From f1ceb96c6e8cd32e865de5da2d213f75f0f3c1d8 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Fri, 28 Mar 2025 16:58:22 +0000 Subject: [PATCH] Update code in endpoints/chy.get.py --- endpoints/chy.get.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/endpoints/chy.get.py b/endpoints/chy.get.py index e69de29..5fa62a1 100644 --- a/endpoints/chy.get.py +++ b/endpoints/chy.get.py @@ -0,0 +1,9 @@ +from fastapi import APIRouter, Depends, HTTPException, status +from typing import Dict + +router = APIRouter() + +@router.get("/chy", status_code=200, response_model=Dict[str, str]) +async def get_yolo(): + """Return yolo""" + return {"message": "yolo"} \ No newline at end of file