mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-01-17 06:21:22 -05:00
* add universal toast plugin * add server side locales * integrate CRF++ into CI/CD Pipeline * docs(docs): 📝 add recipe parser docs * feat(backend): ✨ Continued work on ingredient parsers * add new model dest * feat(frontend): ✨ New ingredient parser page * formatting Co-authored-by: Hayden <hay-kot@pm.me>
8 lines
131 B
Python
8 lines
131 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class ErrorResponse(BaseModel):
|
|
message: str
|
|
error: bool = True
|
|
exception: str = None
|