initial commit for GitHub

This commit is contained in:
Lucas Jensen
2024-12-01 19:15:25 -08:00
commit 925b334e4c
91 changed files with 8031 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
from typing import Optional
from pydantic import BaseModel, HttpUrl
class Article(BaseModel):
id: int
article_title: str
body: str
is_featured: Optional[bool] = False
video_url: Optional[HttpUrl] = None