mirror of
https://github.com/Benexl/FastAnime.git
synced 2025-12-27 13:13:25 -08:00
21 lines
620 B
Python
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,
|
|
},
|
|
} |