Files
pg/netlink/link.go
2024-07-12 21:40:47 +08:00

19 lines
179 B
Go

package netlink
var info = Info{}
type Info struct {
IPv4 string
IPv6 string
}
func Show() Info {
return info
}
type Link struct {
Name string
Index int
Type uint32
}