Files
water/syscalls_other.go
2022-08-28 13:20:08 +08:00

11 lines
220 B
Go

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