folder reorganization
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# ------------------------------------------------------------
|
||||
# XBMC entry point
|
||||
# ------------------------------------------------------------
|
||||
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
import xbmc
|
||||
from platformcode import config, logger
|
||||
|
||||
logger.info("init...")
|
||||
|
||||
librerias = xbmc.translatePath(os.path.join(config.get_runtime_path(), 'lib'))
|
||||
sys.path.append(librerias)
|
||||
|
||||
from platformcode import launcher
|
||||
|
||||
if sys.argv[2] == "":
|
||||
launcher.start()
|
||||
launcher.run()
|
||||
else:
|
||||
launcher.run()
|
||||
Reference in New Issue
Block a user