1
0
mirror of https://github.com/fumiama/WireGold.git synced 2026-06-08 01:24:57 +08:00
Files
WireGold/lower/tun_stub.go
2022-01-01 14:52:46 +08:00

13 lines
226 B
Go

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