Update code in endpoints/males.get.py

This commit is contained in:
Backend IM Bot 2025-03-28 09:11:04 +01:00
parent 2ca5862e46
commit 284cdd5063

18
endpoints/males.get.py Normal file
View File

@ -0,0 +1,18 @@
# Entity: Male
from fastapi import APIRouter, Depends, status
from sqlalchemy.orm import Session
from typing import List
from core.database import get_db
from models.male import Male
from schemas.male import MaleSchema
from helpers.male_helpers import get_all_males
router = APIRouter()
@router.get("/males", status_code=200, response_model=List[MaleSchema])
async def get_males(
db: Session = Depends(get_db)
):
males = get_all_males(db)
return males