10 lines
236 B
Python
10 lines
236 B
Python
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!!!"
|
|
} |