mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-16 04:02:52 -06:00
14 lines
313 B
Python
14 lines
313 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class IPAMConfig(AppConfig):
|
|
name = "ipam"
|
|
verbose_name = "IPAM"
|
|
|
|
def ready(self):
|
|
from netbox.models.features import register_models
|
|
from . import signals, search # noqa: F401
|
|
|
|
# Register models
|
|
register_models(*self.get_models())
|