Made linter stop complaining
continuous-integration/drone the build was successful Details

pull/17/head^2
Jef Roosens 2021-05-18 12:26:42 +02:00
parent 8362590d79
commit e11688c8a5
Signed by: Jef Roosens
GPG Key ID: B580B976584B5F30
2 changed files with 5 additions and 0 deletions

View File

@ -0,0 +1 @@
"""Main application package containing all code."""

View File

@ -1,9 +1,13 @@
"""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")