Skip to content

Commit

Permalink
Remove unused code from species
Browse files Browse the repository at this point in the history
  • Loading branch information
Iglesys347 committed Mar 23, 2024
1 parent 64582b7 commit 8d07b09
Showing 1 changed file with 6 additions and 15 deletions.
21 changes: 6 additions & 15 deletions src/router/species.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,13 @@
from os import path
"""
TODO: species spefic endpoints:
- get the list of species
- get the list of sub-species (for each species)
"""

from fastapi import APIRouter, Depends, status, HTTPException
from fastapi.responses import FileResponse
from sqlalchemy.orm import Session

from src.dependencies import get_db

from src.models.responses import ErrorMessage

from src.database.crud import get_image
from fastapi import APIRouter


router = APIRouter(
prefix="/species",
tags=["species"],
)


# TODO: species spefic endpoints:
# - get the list of species
# - get the list of sub-species (for each species)

0 comments on commit 8d07b09

Please sign in to comment.