recopytex/recopytex/dashboard/index.py

9 lines
169 B
Python

#!/usr/bin/env python
# encoding: utf-8
from .app import app, server
from .routes import render_page_content
if __name__ == "__main__":
app.run_server(debug=True)