12 lines
339 B
Python
12 lines
339 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class IncidentIntelligenceConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'incident_intelligence'
|
|
verbose_name = 'Incident Intelligence'
|
|
|
|
def ready(self):
|
|
"""Initialize the app when Django starts"""
|
|
import incident_intelligence.signals
|