From 7b011fd887690848ffbb5812e7529bf7d46483d6 Mon Sep 17 00:00:00 2001 From: Borgia Leiva Date: Tue, 3 Feb 2026 13:37:23 +0100 Subject: [PATCH] removed TODO comments from main.py --- main.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/main.py b/main.py index 4d623c9..ba3776f 100644 --- a/main.py +++ b/main.py @@ -82,10 +82,6 @@ def ping(): def source(): return {"url": "https://github.com/a-mayb3/Kanban_clone_backend"} -## TODO: Add root endpoint that gives basic info about the API -## TODO: Add more detailed error handling and logging -## TODO: Implement authentication and authorization mechanisms - if __name__ == "__main__": import uvicorn uvicorn.run(app, host="0.0.0.0", port=8000)