fiixy-project-68ohtq/endpoints/get-endpoint.post.py
2025-03-19 18:37:44 +01:00

8 lines
185 B
Python

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