diff --git a/app/__init__.py b/app/__init__.py index e69de29..142af97 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -0,0 +1 @@ +"""Main application package containing all code.""" diff --git a/app/__main__.py b/app/__main__.py index dd82e5f..be8dbd3 100644 --- a/app/__main__.py +++ b/app/__main__.py @@ -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")