mirror of
https://github.com/fumiama/water.git
synced 2026-06-05 10:10:29 +08:00
10 lines
179 B
Go
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")
|
|
}
|