mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-25 18:08:38 -06:00
14 lines
301 B
Python
14 lines
301 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class VPNConfig(AppConfig):
|
|
name = 'vpn'
|
|
verbose_name = 'VPN'
|
|
|
|
def ready(self):
|
|
from netbox.models.features import register_models
|
|
from . import search # noqa: F401
|
|
|
|
# Register models
|
|
register_models(*self.get_models())
|