Files
FastAnime/app/View/screens.py
2024-05-15 20:33:20 +03:00

21 lines
620 B
Python

# The screens dictionary contains the objects of the models and controllers
# of the screens of the application.
from Controller import SearchScreenController,MainScreenController,MyListScreenController
from Model import MainScreenModel,SearchScreenModel,MyListScreenModel
screens = {
"main screen": {
"model": MainScreenModel,
"controller": MainScreenController,
},
"search screen": {
"model": SearchScreenModel,
"controller": SearchScreenController,
},
"my list screen": {
"model": MyListScreenModel,
"controller": MyListScreenController,
},
}