mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-01-31 04:53:11 -05:00
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
|