mirror of
https://github.com/fumiama/WireGold.git
synced 2026-06-06 16:30:27 +08:00
17 lines
271 B
Go
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")
|
|
}
|