2024-03-31 04:18:41 +03:00
|
|
|
from typing import Annotated
|
2024-03-31 01:36:57 +03:00
|
|
|
|
2024-03-31 04:18:41 +03:00
|
|
|
from fastapi import APIRouter, Depends
|
|
|
|
|
2024-04-01 12:19:10 +03:00
|
|
|
from api.application.contracts.user import UserResponse
|
2024-03-31 04:18:41 +03:00
|
|
|
from api.infrastructure.dependencies.stub import Stub
|
2024-03-31 01:36:57 +03:00
|
|
|
|
|
|
|
user_router = APIRouter(prefix="/users", tags=["Users"])
|
|
|
|
|
|
|
|
|
|
|
|
@user_router.get("/")
|
|
|
|
async def get_all_users() -> list[UserResponse]:
|
|
|
|
return []
|