mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-10 02:19:37 -06:00
14 lines
325 B
Python
14 lines
325 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CircuitsConfig(AppConfig):
|
|
name = "circuits"
|
|
verbose_name = "Circuits"
|
|
|
|
def ready(self):
|
|
from netbox.models.features import register_models
|
|
from . import signals, search # noqa: F401
|
|
|
|
# Register models
|
|
register_models(*self.get_models())
|