7 lines
167 B
Python
7 lines
167 B
Python
from fastapi import APIRouter
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/books", status_code=200, response_model=str)
|
|
async def say_good_evening():
|
|
return "Good evening" |