initial gitea commit

This commit is contained in:
Lucas Jensen
2024-06-26 19:19:20 -07:00
commit e830445d02
47 changed files with 10936 additions and 0 deletions

17
server/models.py Normal file
View File

@@ -0,0 +1,17 @@
from pydantic import BaseModel
class About(BaseModel):
name: str
email: str
bio: str
github: str
class Project(BaseModel):
id: int | None = None
name: str
description: str
source: str | None = None
live: str | None = None
is_self_hosted: bool = False