Fixes #1622 - split the api into 4 apps: core, history, schedule, storage - exploded the settings into testing/prod
7 lines
203 B
Python
7 lines
203 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class HistoryConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "libretime_api.history"
|
|
verbose_name = "LibreTime History API"
|