feat: add heleket payment provider

This commit is contained in:
3252a8
2026-05-18 15:26:07 +03:00
parent 960754c54e
commit c9c12b9ed6
8 changed files with 614 additions and 3 deletions
+2 -1
View File
@@ -2,7 +2,7 @@ from __future__ import annotations
from typing import Any, Callable, Dict, Iterable, List, Mapping, Optional
from . import cryptopay, freekassa, platega, severpay, stars, wata, yookassa
from . import cryptopay, freekassa, heleket, platega, severpay, stars, wata, yookassa
from .base import PaymentProviderPresentation, PaymentProviderSpec, ServiceFactoryContext
PAYMENT_PROVIDER_SPECS: tuple[PaymentProviderSpec, ...] = (
@@ -14,6 +14,7 @@ PAYMENT_PROVIDER_SPECS: tuple[PaymentProviderSpec, ...] = (
yookassa.SPEC,
stars.SPEC,
cryptopay.SPEC,
heleket.SPEC,
)