Update code in endpoints/new.get.py

This commit is contained in:
Backend IM Bot 2025-03-28 18:19:01 +00:00
parent 155205f922
commit 9cd966ffb3

View File

@ -0,0 +1,7 @@
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"}