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

This commit is contained in:
Backend IM Bot 2025-03-13 15:39:59 +01:00
parent 9327d7fe19
commit 4c86fce715

View File

@ -0,0 +1,10 @@
from fastapi import APIRouter, Depends, HTTPException
router = APIRouter()
@router.get("/new-endpoint")
async def new_endpoint_handler():
"""Demo endpoint"""
return {
"message": "this stuff fucking works, yoo!!!"
}