mirror of
https://github.com/yggdrasil-network/water.git
synced 2025-05-19 16:35:10 +03:00
9 lines
223 B
Go
9 lines
223 B
Go
// +build !linux,!darwin,!windows,!freebsd,!netbsd,!openbsd,!solaris,!illumos
|
|
|
|
package water
|
|
|
|
import "errors"
|
|
|
|
func openDev(config Config) (*Interface, error) {
|
|
return nil, errors.New("not implemented on this platform")
|
|
}
|