run.py 273B

123456789
  1. from os import getcwd
  2. from sys import path as ppath
  3. ppath.insert(1,getcwd()+'/modules') # TODO: win32 compatibilite (python path)
  4. from synergine.core.Core import Core
  5. from config import config
  6. if __name__ == '__main__':
  7. Core.start_core(config, modules_path='modules')