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
This commit is contained in:
parent
87d2da9d84
commit
fce988aef1
120 changed files with 1499 additions and 1078 deletions
21
api/libretime_api/schedule/views/__init__.py
Normal file
21
api/libretime_api/schedule/views/__init__.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
from .playlist import PlaylistContentViewSet, PlaylistViewSet
|
||||
from .podcast import (
|
||||
ImportedPodcastViewSet,
|
||||
PodcastEpisodeViewSet,
|
||||
PodcastViewSet,
|
||||
StationPodcastViewSet,
|
||||
)
|
||||
from .schedule import ScheduleViewSet
|
||||
from .show import (
|
||||
ShowDaysViewSet,
|
||||
ShowHostViewSet,
|
||||
ShowInstanceViewSet,
|
||||
ShowRebroadcastViewSet,
|
||||
ShowViewSet,
|
||||
)
|
||||
from .smart_block import (
|
||||
SmartBlockContentViewSet,
|
||||
SmartBlockCriteriaViewSet,
|
||||
SmartBlockViewSet,
|
||||
)
|
||||
from .webstream import WebstreamMetadataViewSet, WebstreamViewSet
|
Loading…
Add table
Add a link
Reference in a new issue