2022-04-07 21:19:38 -04:00
|
|
|
# Ensure that VRFs are imported before IPs/prefixes so dumpdata & loaddata work correctly
|
2021-11-01 16:14:44 -04:00
|
|
|
from .fhrp import *
|
2022-04-07 21:19:38 -04:00
|
|
|
from .vrfs import *
|
2021-02-24 21:01:16 -05:00
|
|
|
from .ip import *
|
|
|
|
from .services import *
|
|
|
|
from .vlans import *
|
|
|
|
|
|
|
|
__all__ = (
|
2021-10-24 23:42:47 -05:00
|
|
|
'ASN',
|
2021-02-24 21:01:16 -05:00
|
|
|
'Aggregate',
|
|
|
|
'IPAddress',
|
2021-07-16 09:15:19 -04:00
|
|
|
'IPRange',
|
2021-11-01 16:14:44 -04:00
|
|
|
'FHRPGroup',
|
|
|
|
'FHRPGroupAssignment',
|
2021-02-24 21:01:16 -05:00
|
|
|
'Prefix',
|
|
|
|
'RIR',
|
|
|
|
'Role',
|
|
|
|
'RouteTarget',
|
|
|
|
'Service',
|
2022-01-12 16:42:28 -05:00
|
|
|
'ServiceTemplate',
|
2021-02-24 21:01:16 -05:00
|
|
|
'VLAN',
|
|
|
|
'VLANGroup',
|
|
|
|
'VRF',
|
|
|
|
)
|