Sideband_CE/sbapp/kivymd/tools/patterns/MVC/View/screens.py_tmp

14 lines
247 B
Plaintext
Raw Normal View History

2022-07-07 22:16:10 +02:00
# The screens dictionary contains the objects of the models and controllers
# of the screens of the application.
from Model.%s import %s
from Controller.%s import %s
screens = {
%s: {
"model": %s,
"controller": %s,
},
}