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

This commit is contained in:
Backend IM Bot 2025-03-19 18:37:44 +01:00
parent f33b7cf615
commit 3458ddb456

View File

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