mirror of
https://github.com/soypat/lneto.git
synced 2026-08-05 15:33:41 +00:00
10 lines
148 B
Go
10 lines
148 B
Go
//go:build !tinygo
|
|
|
|
package internal
|
|
|
|
import "net"
|
|
|
|
func interfaceByName(name string) (*net.Interface, error) {
|
|
return net.InterfaceByName(name)
|
|
}
|