mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-24 06:10:36 +01:00
14 lines
247 B
Plaintext
14 lines
247 B
Plaintext
|
# 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,
|
||
|
},
|
||
|
}
|