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