Made linter stop complaining
continuous-integration/drone the build was successful
Details
continuous-integration/drone the build was successful
Details
parent
8362590d79
commit
e11688c8a5
|
@ -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 New Issue