From 0ca56d0967d547713f5d8e998973b92bf56eeeba Mon Sep 17 00:00:00 2001 From: Boris Kovalskii <36034823+JustYay@users.noreply.github.com> Date: Thu, 16 Oct 2025 23:41:47 +0000 Subject: [PATCH] Add files via upload --- web/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/__init__.py b/web/__init__.py index 84886ad0..2a2cc737 100644 --- a/web/__init__.py +++ b/web/__init__.py @@ -2,8 +2,8 @@ from aiohttp.web_urldispatcher import UrlDispatcher from utils.modules_loader import load_module_webhooks -from .heleket_payment import heleket_payment_webhook -from .kassai_payment import kassai_payment_webhook +from handlers.payments.heleket.webhook import heleket_webhook +from handlers.payments.kassai.webhook import kassai_webhook from .wata_payment import wata_payment_webhook @@ -14,8 +14,8 @@ HELEKET_WEBHOOK_PATH = "/heleket/webhook" async def register_web_routes(router: UrlDispatcher) -> None: router.add_post(WATA_WEBHOOK_PATH, wata_payment_webhook) - router.add_post(KASSAI_WEBHOOK_PATH, kassai_payment_webhook) - router.add_post(HELEKET_WEBHOOK_PATH, heleket_payment_webhook) + router.add_post(KASSAI_WEBHOOK_PATH, kassai_webhook) + router.add_post(HELEKET_WEBHOOK_PATH, heleket_webhook) try: module_webhooks = load_module_webhooks()