1
0
mirror of https://github.com/fumiama/WireGold.git synced 2026-06-06 16:30:27 +08:00
Files
WireGold/lower/tun_stub.go
2021-12-28 21:50:10 +08:00

17 lines
271 B
Go

//go:build !darwin && !linux && !windows
// +build !darwin,!linux,!windows
package lower
func (n *NIC) prepare() {
panic("not support this os now")
}
func (n *NIC) Up() {
panic("not support this os now")
}
func (n *NIC) Down() {
panic("not support this os now")
}