mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-28 07:37:06 +00:00
10 lines
159 B
Python
10 lines
159 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class IPAMConfig(AppConfig):
|
|
name = "ipam"
|
|
verbose_name = "IPAM"
|
|
|
|
def ready(self):
|
|
import ipam.signals
|