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

This commit is contained in:
Backend IM Bot 2025-03-19 18:36:15 +01:00
parent 80062ada68
commit 3a35d99ca9

View File

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