github.com/borderzero/water@v0.0.1/syscalls_other.go (about) 1 // +build !linux,!darwin,!windows 2 3 package water 4 5 import "errors" 6 7 func openDev(config Config) (*Interface, error) { 8 return nil, errors.New("not implemented on this platform") 9 }