11 lines
232 B
Python
11 lines
232 B
Python
|
from fastapi import APIRouter
|
||
|
|
||
|
from api.application.contracts.user import UserResponse
|
||
|
|
||
|
user_router = APIRouter(prefix="/users", tags=["Users"])
|
||
|
|
||
|
|
||
|
@user_router.get("/")
|
||
|
async def get_all_users() -> list[UserResponse]:
|
||
|
return []
|