11 lines
277 B
Python
11 lines
277 B
Python
from fastapi import APIRouter, Depends, HTTPException
|
|
from core.database import fake_users_db
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/yolo-endpoint")
|
|
async def yolo_endpoint_handler():
|
|
"""Demo yolo endpoint"""
|
|
return {
|
|
"message": "yolooo, this stuff works!!"
|
|
} |