22 lines
648 B
Python
22 lines
648 B
Python
from fastapi import APIRouter, Depends, HTTPException, status
|
|
from sqlalchemy.orm import Session
|
|
from typing import List
|
|
from core.database import get_db
|
|
from models.tree import Tree
|
|
from schemas.tree import TreeSchema
|
|
from helpers.tree_helpers import get_all_trees
|
|
|
|
router = APIRouter()
|
|
|
|
@router.get("/trees", response_model=List[TreeSchema], status_code=status.HTTP_200_OK)
|
|
async def get_trees(
|
|
db: Session = Depends(get_db)
|
|
):
|
|
"""Get all trees"""
|
|
trees = get_all_trees(db)
|
|
if not trees:
|
|
raise HTTPException(
|
|
status_code=status.HTTP_404_NOT_FOUND,
|
|
detail="No trees found"
|
|
)
|
|
return trees |