sintonia/api/libretime_api/schedule/apps.py
Jonas L fce988aef1
feat(api): split api into multiple apps (#1626)
Fixes #1622

- split the api into 4 apps: core, history, schedule, storage
- exploded the settings into testing/prod
2022-04-04 14:38:50 +02:00

7 lines
206 B
Python

from django.apps import AppConfig
class ScheduleConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "libretime_api.schedule"
verbose_name = "LibreTime Schedule API"