diff --git a/endpoints/new.get.py b/endpoints/new.get.py index e69de29..2209bf8 100644 --- a/endpoints/new.get.py +++ b/endpoints/new.get.py @@ -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"} \ No newline at end of file