Esempio n. 1
0
class Freeline(object):
    def __init__(self):
        self.dispatcher = Dispatcher()

    def call(self, args=None):
        if 'init' in args and args.init:
            print('init freeline project...')
            init()
            exit()

        self.dispatcher.call_command(args)
Esempio n. 2
0
 def __init__(self):
     self.dispatcher = Dispatcher()