14 lines
296 B
Python
14 lines
296 B
Python
# Gnu General Public License - see LICENSE.TXT
|
|
|
|
from resources.lib.simple_logging import SimpleLogging
|
|
from resources.lib.functions import mainEntryPoint
|
|
|
|
log = SimpleLogging('default')
|
|
|
|
log.debug("About to enter mainEntryPoint()")
|
|
|
|
mainEntryPoint()
|
|
|
|
# clear done and exit.
|
|
# sys.modules.clear()
|