From a01c7b2e2a1dedecdbec178839b599ea13acf446 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Thu, 13 Mar 2025 22:06:38 +0100 Subject: [PATCH] Update code in endpoints/yolo-endpoint.get.py --- endpoints/yolo-endpoint.get.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/endpoints/yolo-endpoint.get.py b/endpoints/yolo-endpoint.get.py index e69de29..32de62f 100644 --- a/endpoints/yolo-endpoint.get.py +++ b/endpoints/yolo-endpoint.get.py @@ -0,0 +1,10 @@ +from fastapi import APIRouter, Depends, HTTPException + +router = APIRouter() + +@router.get("/yolo-endpoint") +async def yolo_endpoint_handler(): + """Demo yolo endpoint""" + return { + "message": "yoloooo! this shii works!!" + } \ No newline at end of file