1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

25 lines
446 B
Python
Raw Normal View History

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 *
from .ip import *
from .services import *
from .vlans import *
__all__ = (
2021-10-24 23:42:47 -05:00
'ASN',
'Aggregate',
'IPAddress',
2021-07-16 09:15:19 -04:00
'IPRange',
2021-11-01 16:14:44 -04:00
'FHRPGroup',
'FHRPGroupAssignment',
'Prefix',
'RIR',
'Role',
'RouteTarget',
'Service',
2022-01-12 16:42:28 -05:00
'ServiceTemplate',
'VLAN',
'VLANGroup',
'VRF',
)