diff --git a/main.py b/main.py index c555243..5641a97 100644 --- a/main.py +++ b/main.py @@ -35,7 +35,7 @@ routes = web.RouteTableDef() @routes.get("/") async def main(_): - return web.Response(status=405, text="405: Method Not Allowed") + return web.Response(status=200, text="The server is running!") @routes.post("/")