All checks were successful
continuous-integration/drone the build was successful
13 lines
194 B
Python
13 lines
194 B
Python
"""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")
|