示例#1
0
def main():
    args = docopt.docopt(__doc__)
    config = args["--config"] or None

    from tabpy.tabpy_server.app.app import TabPyApp

    app = TabPyApp(config)
    app.run()
示例#2
0
def main():
    from tabpy.tabpy_server.app.app import TabPyApp
    app = TabPyApp()
    app.run()