2017-01-29 20:06:08 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2015-08-02 18:59:11 +00:00
|
|
|
import sys
|
2019-02-06 20:52:24 +00:00
|
|
|
from cps import create_app
|
|
|
|
from cps.web import web
|
|
|
|
from cps import Server
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-12-23 08:53:39 +00:00
|
|
|
if __name__ == '__main__':
|
2019-02-06 20:52:24 +00:00
|
|
|
app = create_app()
|
|
|
|
app.register_blueprint(web)
|
2018-07-09 16:47:36 +00:00
|
|
|
Server.startServer()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|