water/syscalls_other.go
2019-04-01 19:05:55 -07:00

9 lines
179 B
Go

// +build !linux,!darwin,!windows
package water
import "errors"
func openDev(config Config) (*Interface, error) {
return nil, errors.New("not implemented on this platform")
}