10 lines
157 B
Python
10 lines
157 B
Python
![]() |
from ttfrog.app import initialize
|
||
|
|
||
|
_context = initialize()
|
||
|
app = _context.flask
|
||
|
|
||
|
|
||
|
@app.route("/", defaults={"path": ""})
|
||
|
def serve(path):
|
||
|
return "HELLO"
|