mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-13 11:59:35 -06:00
13 lines
295 B
Python
13 lines
295 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class WirelessConfig(AppConfig):
|
|
name = 'wireless'
|
|
|
|
def ready(self):
|
|
from netbox.models.features import register_models
|
|
from . import signals, search # noqa: F401
|
|
|
|
# Register models
|
|
register_models(*self.get_models())
|