From c0c64d4fb8341bf7818524230db0a1cdc04b600d Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Tue, 17 Dec 2024 00:30:14 -0500 Subject: [PATCH] [+] Serve --- server/host.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/host.py b/server/host.py index 2da1ba8..ee45b63 100644 --- a/server/host.py +++ b/server/host.py @@ -69,3 +69,7 @@ async def get_puzzle(id: str): @app.get("/") async def get_main(): return RedirectResponse("https://slither.hydev.org") + + +if __name__ == '__main__': + uvicorn.run(app, host="0.0.0.0", port=51562)