basic frontend and backend functionality. Need to test with actual livestream

This commit is contained in:
Lucas Jensen
2025-01-12 16:47:04 -08:00
parent 5b73cecee9
commit c482f6758c
12 changed files with 122 additions and 18 deletions

View File

@@ -1,7 +1,9 @@
from pydantic import BaseModel
from typing import Optional
class Group(BaseModel):
name: str
bio: str
id: int | None = None
livestream_id: str = ""
id: Optional[int] = None