port to new django, AI automated
This commit is contained in:
14
eventplanner_gcal/apps.py
Normal file
14
eventplanner_gcal/apps.py
Normal file
@@ -0,0 +1,14 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class EventplannerGcalConfig(AppConfig):
|
||||
"""App configuration for eventplanner_gcal."""
|
||||
|
||||
name = "eventplanner_gcal"
|
||||
verbose_name = "Event Planner Google Calendar Integration"
|
||||
default_auto_field = "django.db.models.BigAutoField"
|
||||
|
||||
def ready(self):
|
||||
"""Import signal handlers when the app is ready."""
|
||||
# Import signals to register them
|
||||
from . import signals # noqa: F401
|
||||
Reference in New Issue
Block a user