feat: Update endpoint get-endpoint

This commit is contained in:
Backend IM Bot 2025-03-19 18:41:51 +01:00
parent 8d996a096b
commit 2a445c21f7

View File

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