This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
|
"""Main entrypoint for the program."""
|
|
from quart import Quart
|
|
|
|
app = Quart("jos")
|
|
|
|
|
|
@app.route("/")
|
|
async def hello():
|
|
"""Placeholder route."""
|
|
return "hello"
|
|
|
|
|
|
app.run(host="0.0.0.0")
|