reorganized viewsets into their own files

This commit is contained in:
Edward Tirado Jr 2025-07-02 16:58:44 -05:00
parent 83982877c3
commit 2e7dbe4ddc
13 changed files with 330 additions and 277 deletions

View file

@ -0,0 +1,11 @@
from .movie import MovieViewset
from .movie_list import MovieListViewset
from .schedule import ScheduleViewset
from .showing import ShowingViewset
__all__ = [
"MovieViewset",
"MovieListViewset",
"ScheduleViewset",
"ShowingViewset",
]