10 lines
199 B
Python
10 lines
199 B
Python
from fastapi import APIRouter, Depends
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/get-endpoint")
|
|
async def get_endpoint_handler():
|
|
"""Demo get endpoint"""
|
|
return {
|
|
"message": "yolooo"
|
|
} |