Files
openlan/pkg/water/syscalls_other.go
2025-04-13 15:33:35 +08:00

10 lines
186 B
Go

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