Update code in endpoints/some-endpoint.post.py

This commit is contained in:
Backend IM Bot 2025-03-15 22:49:16 +01:00
parent 98c10eee50
commit 207494e4a9

View File

@ -0,0 +1,8 @@
from fastapi import APIRouter, Depends
router = APIRouter()
@router.post("/some-endpoint")
async def some_endpoint_handler():
"""Return 'yoloo'"""
return {"message": "yoloo"}