Files
water/syscalls_other.go
T
2022-07-26 22:10:38 +08:00

10 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")
}