Prepare some packages to be imported correctly by cx_freeze

This commit is contained in:
Manuel Cortez 2019-11-19 17:31:47 -06:00
parent 56171f94cf
commit a14f648cb3
2 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,4 @@
from .base import *
from .attach import * from .attach import *
from . audioRecorder import * from . audioRecorder import *
from . blacklist import * from . blacklist import *

View File

@ -11,6 +11,8 @@
By using this design pattern it allows more decoupled code, easier testing (as we don't need to instantiate the views) and easy to switch (or add) a new graphical user interface by replacing interactors and views. By using this design pattern it allows more decoupled code, easier testing (as we don't need to instantiate the views) and easy to switch (or add) a new graphical user interface by replacing interactors and views.
""" """
from . import player
from .base import *
from .attach import * from .attach import *
from .audioRecorder import * from .audioRecorder import *
from .blacklist import * from .blacklist import *