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
|
from quart import Quart
|
||||||
|
|
||||||
app = Quart("jos")
|
app = Quart("jos")
|
||||||
|
|
||||||
|
|
||||||
@app.route("/")
|
@app.route("/")
|
||||||
async def hello():
|
async def hello():
|
||||||
|
"""Placeholder route."""
|
||||||
return "hello"
|
return "hello"
|
||||||
|
|
||||||
|
|
||||||
app.run(host="0.0.0.0")
|
app.run(host="0.0.0.0")
|
||||||
|
|
Reference in New Issue