mirror of
https://github.com/wweir/sower.git
synced 2024-04-21 12:42:15 +00:00
10 lines
114 B
Go
10 lines
114 B
Go
package net
|
|
|
|
import "net"
|
|
|
|
// Iface is net interface address info
|
|
type Iface struct {
|
|
net.HardwareAddr
|
|
net.IP
|
|
}
|