mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-13 23:32:17 -06:00
13 lines
284 B
Python
13 lines
284 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class TenancyConfig(AppConfig):
|
|
name = 'tenancy'
|
|
|
|
def ready(self):
|
|
from netbox.models.features import register_models
|
|
from . import search # noqa: F401
|
|
|
|
# Register models
|
|
register_models(*self.get_models())
|