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
|