mirror of
https://github.com/fumiama/WireGold.git
synced 2026-06-05 07:50:24 +08:00
13 lines
230 B
Go
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")
|
|
}
|