Initial commit: svg backend

This commit is contained in:
adminko
2026-03-19 13:39:32 +03:00
commit 85fb2f4bb9
78 changed files with 6161 additions and 0 deletions

View File

View File

@@ -0,0 +1,7 @@
from enum import Enum
class UserRole(str, Enum):
ADMIN = "admin"
OPERATOR = "operator"
VIEWER = "viewer"