(add): Backup/Restore

This commit is contained in:
2026-07-16 22:38:01 -04:00
parent 76040c1f91
commit 1e6b7787b3
14 changed files with 343 additions and 12 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ from fastapi import APIRouter, Header
class Basket:
prefix: str
b_id: int
description: str = ""
donors: str = ""
description: str | None = ""
donors: str | None = ""
winning_ticket: int = 0
class BasketRepo(RepoTemplate):