Первый коммит

This commit is contained in:
2026-02-25 14:47:19 +03:00
commit 43c404f958
171 changed files with 4917 additions and 0 deletions

17
app/schemas/common.py Normal file
View File

@@ -0,0 +1,17 @@
from enum import Enum
from pydantic import BaseModel
class ModuleName(str, Enum):
BACKEND = "backend"
AGENT = "agent"
RAG = "rag"
CONFLUENCE = "confluence"
FRONTEND = "frontend"
class ErrorPayload(BaseModel):
code: str
desc: str
module: ModuleName