pymicrocosm/src/microcosm/__main__.py

6 lines
89 B
Python

from venv import create
from . import create_app
app = create_app()
app.run(debug=True)