Kanban_clone_backend/main.py
2026-01-27 11:16:17 +01:00

14 lines
No EOL
324 B
Python

from fastapi import FastAPI, HTTPException, Depends
from routers.tasks import router as tasks_router
from routers.projects import router as projects_router
app = FastAPI()
app.include_router(tasks_router)
app.include_router(projects_router)
"""ping pong :)"""
@app.get("/ping")
def ping():
return {"message": "pong"}