mirror of
https://github.com/fumiama/water
synced 2025-12-24 12:12:32 +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")
|
|
}
|