Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
sincpro-payments-sdk / apps / qr / __init__.py
Size: Mime:
"""Framework for QR code generation and payment processing."""

from .infrastructure.framework import (
    ApplicationService,
    DataTransferObject,
    Feature,
    config_framework,
)

qr = config_framework("payment-qr")

from .services import bnb, linkser

__all__ = [
    "qr",
    "bnb",
    "linkser",
    "Feature",
    "ApplicationService",
    "DataTransferObject",
]