mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-14 20:39:35 -06:00
20 lines
269 B
Python
20 lines
269 B
Python
from .ip import *
|
|
from .services import *
|
|
from .vlans import *
|
|
from .vrfs import *
|
|
|
|
__all__ = (
|
|
'ASN',
|
|
'Aggregate',
|
|
'IPAddress',
|
|
'IPRange',
|
|
'Prefix',
|
|
'RIR',
|
|
'Role',
|
|
'RouteTarget',
|
|
'Service',
|
|
'VLAN',
|
|
'VLANGroup',
|
|
'VRF',
|
|
)
|