Files
OSINT/reports/apps.py
Iliyan Angelov ed94dd22dd update
2025-11-26 22:32:20 +02:00

16 lines
423 B
Python

"""
App configuration for reports app.
"""
from django.apps import AppConfig
class ReportsConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'reports'
def ready(self):
"""Set up signals and configure email settings."""
# Note: Email settings are loaded dynamically via the email backend
# No need to access database here to avoid warnings
pass