mirror of
https://github.com/net-byte/water.git
synced 2024-04-21 12:21:38 +00:00
11 lines
220 B
Go
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")
|
|
}
|