mirror of
https://github.com/fosrl/newt.git
synced 2026-02-08 05:56:40 +00:00
13 lines
217 B
Go
13 lines
217 B
Go
//go:build !windows
|
|
|
|
package network
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
)
|
|
|
|
func configureWindows(interfaceName string, ip net.IP, ipNet *net.IPNet) error {
|
|
return fmt.Errorf("configureWindows called on non-Windows platform")
|
|
}
|