Made linter stop complaining
All checks were successful
continuous-integration/drone the build was successful
All checks were successful
continuous-integration/drone the build was successful
This commit is contained in:
parent
8362590d79
commit
e11688c8a5
2 changed files with 5 additions and 0 deletions
|
|
@ -0,0 +1 @@
|
|||
"""Main application package containing all code."""
|
||||
|
|
@ -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")
|
||||
|
|
|
|||
Reference in a new issue