2025-03-28 18:19:01 +00:00

7 lines
184 B
Python

from fastapi import APIRouter, status
router = APIRouter()
@router.get("/new", status_code=status.HTTP_200_OK)
async def project_status():
return {"message": "the project works"}