mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00
13 lines
311 B
Python
13 lines
311 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ExtrasConfig(AppConfig):
|
|
name = "extras"
|
|
|
|
def ready(self):
|
|
from netbox.models.features import register_models
|
|
from . import dashboard, lookups, search, signals # noqa: F401
|
|
|
|
# Register models
|
|
register_models(*self.get_models())
|