From b5d8aea56aeafd56a72fea835098f2d8106d9c97 Mon Sep 17 00:00:00 2001 From: Azalea Gui Date: Tue, 3 Jan 2023 04:06:33 -0500 Subject: [PATCH] [O] Better prompt for uptime monitor --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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("/")