Files
NetBox-VM-Import/netbox_vmware_importer/__init__.py
T
2026-07-10 11:06:12 +02:00

22 lines
606 B
Python

from netbox.plugins import PluginConfig
class VMwareImporterConfig(PluginConfig):
name = "netbox_vmware_importer"
verbose_name = "Virtualization Importer"
description = "Synchronize VMware vSphere and Proxmox VE virtual machines into NetBox."
version = "0.2.0"
author = "Internal NetBox Team"
base_url = "vmware-importer"
min_version = "4.4.0"
def ready(self):
super().ready()
# Importing registers the scheduler system job with NetBox.
from . import jobs # noqa: F401
from . import signals # noqa: F401
config = VMwareImporterConfig