removed TODO comments from main.py

This commit is contained in:
Marta Borgia Leiva 2026-02-03 13:37:23 +01:00
parent b7d24a85e4
commit 7b011fd887

View file

@ -82,10 +82,6 @@ def ping():
def source(): def source():
return {"url": "https://github.com/a-mayb3/Kanban_clone_backend"} 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__": if __name__ == "__main__":
import uvicorn import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000) uvicorn.run(app, host="0.0.0.0", port=8000)