service_man/api/presentation/routers/user.py

11 lines
232 B
Python
Raw Normal View History

2024-04-02 22:33:15 +03:00
from fastapi import APIRouter
2024-03-31 04:18:41 +03:00
2024-04-01 12:19:10 +03:00
from api.application.contracts.user import UserResponse
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 []