1package netlink
2
3import "github.com/vishvananda/netlink/nl"
4
5// Family type definitions
6const (
7	FAMILY_ALL  = nl.FAMILY_ALL
8	FAMILY_V4   = nl.FAMILY_V4
9	FAMILY_V6   = nl.FAMILY_V6
10	FAMILY_MPLS = nl.FAMILY_MPLS
11)
12