1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-07-09 21:34:22 +00:00
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()