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
+8
View File
@@ -0,0 +1,8 @@
"""Webhook handlers"""
from app.webhooks.gitea import handle_gitea_webhook
from app.webhooks.github import handle_github_webhook
from app.webhooks.bitbucket import handle_bitbucket_webhook
__all__ = ["handle_gitea_webhook", "handle_github_webhook", "handle_bitbucket_webhook"]