mirror of
https://github.com/yggdrasil-network/water.git
synced 2025-05-20 00:45:09 +03:00
12 lines
158 B
Go
12 lines
158 B
Go
// +build !linux
|
|
|
|
package water
|
|
|
|
import (
|
|
"net"
|
|
"testing"
|
|
)
|
|
|
|
func setupIfce(t *testing.T, ipNet net.IPNet, dev string) {
|
|
t.Fatal("unsupported platform")
|
|
}
|