reorganized

This commit is contained in:
Lucas Jensen
2024-07-06 10:36:37 -07:00
parent 734f20ce0e
commit a8b6807b79
13 changed files with 40 additions and 96 deletions

11
server/types/project.py Normal file
View File

@@ -0,0 +1,11 @@
from pydantic import BaseModel
from typing import Optional
class Project(BaseModel):
id: Optional[int] = None
name: str
description: str
source: Optional[str] = None
live: Optional[str] = None
is_self_hosted: Optional[bool] = False