This repository has been archived on 2021-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
jos/app/__main__.py
Jef Roosens e11688c8a5
All checks were successful
continuous-integration/drone the build was successful
Made linter stop complaining
2021-05-18 12:26:42 +02:00

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")