11 lines
227 B
Python
11 lines
227 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
@router.from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/booker", status_code=200)
|
|
async def get_evening_greeting():
|
|
return {"message": "Good evening!"} |