Update code in endpoints/endpoint.get.py

This commit is contained in:
Backend IM Bot 2025-03-28 18:10:39 +00:00
parent 14a3e1b52a
commit 99a1fe60ca

View File

@ -0,0 +1,8 @@
from fastapi import APIRouter, status
router = APIRouter()
@router.get("/endpoint", status_code=status.HTTP_200_OK)
async def get_yoloo():
"""Return yoloo"""
return {"message": "yoloo"}