mirror of
https://github.com/luscis/openlan.git
synced 2025-12-24 11:10:54 +08:00
10 lines
186 B
Go
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")
|
|
}
|