8 lines
165 B
Python
8 lines
165 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class IncidentExportConfig(AppConfig):
|
|
name = 'incident_export'
|
|
|
|
def ready(self):
|
|
import incident_export.signals
|