Files
netbox-librenms-plugin/netbox_librenms_plugin/tables/__init__.py
Vlastislav Svatek 673e67106e
Some checks failed
ci / deploy (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL Advanced / Analyze (python) (push) Has been cancelled
first commit
2026-06-05 10:39:05 +02:00

22 lines
664 B
Python

from .cables import LibreNMSCableTable
from .device_status import DeviceStatusTable
from .interfaces import LibreNMSInterfaceTable, LibreNMSVMInterfaceTable, VCInterfaceTable
from .ipaddresses import IPAddressTable
from .locations import SiteLocationSyncTable
from .mappings import InterfaceTypeMappingTable
from .vlans import LibreNMSVLANTable
from .VM_status import VMStatusTable
__all__ = [
"DeviceStatusTable",
"InterfaceTypeMappingTable",
"IPAddressTable",
"LibreNMSCableTable",
"LibreNMSInterfaceTable",
"LibreNMSVLANTable",
"LibreNMSVMInterfaceTable",
"SiteLocationSyncTable",
"VCInterfaceTable",
"VMStatusTable",
]