Add POST endpoint for food

This commit is contained in:
Backend IM Bot 2025-03-28 15:59:11 +00:00
parent a8e2bdf6de
commit 060c29f91a

View File

@ -1,6 +1,6 @@
# Entity: Food
from fastapi import APIRouter, Depends, status
from fastapi import APIRouter, Depends, HTTPException, status
from sqlalchemy.orm import Session
from typing import List
from core.database import get_db