mirror of
https://github.com/fumiama/water.git
synced 2026-06-05 02:00:29 +08:00
13 lines
175 B
Go
13 lines
175 B
Go
// +build !linux,!windows,!darwin
|
|
|
|
package water
|
|
|
|
import (
|
|
"net"
|
|
"testing"
|
|
)
|
|
|
|
func setupIfce(t *testing.T, ipNet net.IPNet, dev string) {
|
|
t.Fatal("unsupported platform")
|
|
}
|