8 lines
200 B
Python
8 lines
200 B
Python
from fastapi import APIRouter, status
|
|
from typing import List
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/dave", status_code=status.HTTP_200_OK, response_model=List[dict])
|
|
async def get_dave():
|
|
return [] |