mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-11 10:59:36 -06: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
|