mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-02 02:03:20 -05:00
13 lines
230 B
Python
13 lines
230 B
Python
from pydantic.main import BaseModel
|
|
|
|
|
|
class ChowdownURL(BaseModel):
|
|
url: str
|
|
|
|
class Config:
|
|
schema_extra = {
|
|
"example": {
|
|
"url": "https://chowdownrepo.com/repo",
|
|
}
|
|
}
|