vtt/src/ttfrog/web.py

10 lines
157 B
Python
Raw Normal View History

2025-09-21 22:11:56 -07:00
from ttfrog.app import initialize
_context = initialize()
app = _context.flask
@app.route("/", defaults={"path": ""})
def serve(path):
return "HELLO"