This commit is contained in:
Primakov Alexandr Alexandrovich
2025-10-12 23:15:09 +03:00
commit 09cdd06307
88 changed files with 15007 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
"""Pydantic schemas for API"""
from app.schemas.repository import (
RepositoryCreate,
RepositoryUpdate,
RepositoryResponse,
RepositoryList
)
from app.schemas.review import (
ReviewResponse,
ReviewList,
CommentResponse
)
from app.schemas.webhook import (
GiteaWebhook,
GitHubWebhook,
BitbucketWebhook
)
__all__ = [
"RepositoryCreate",
"RepositoryUpdate",
"RepositoryResponse",
"RepositoryList",
"ReviewResponse",
"ReviewList",
"CommentResponse",
"GiteaWebhook",
"GitHubWebhook",
"BitbucketWebhook",
]