1
0
mirror of https://github.com/fumiama/WireGold.git synced 2026-06-04 23:40:26 +08:00
Files
WireGold/lower/tun_stub.go
2024-08-03 16:42:16 +08:00

13 lines
230 B
Go

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