mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
11 lines
180 B
Go
11 lines
180 B
Go
|
package netlink
|
||
|
|
||
|
import "github.com/vishvananda/netlink/nl"
|
||
|
|
||
|
// Family type definitions
|
||
|
const (
|
||
|
FAMILY_ALL = nl.FAMILY_ALL
|
||
|
FAMILY_V4 = nl.FAMILY_V4
|
||
|
FAMILY_V6 = nl.FAMILY_V6
|
||
|
)
|