calibre-web/cps.py
2019-02-06 21:52:32 +01:00

17 lines
244 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from cps import create_app
from cps.web import web
from cps import Server
if __name__ == '__main__':
app = create_app()
app.register_blueprint(web)
Server.startServer()