Files
life-echo/api/app/features/payment/service.py
2026-03-19 14:36:40 +08:00

15 lines
400 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
支付 feature 对外暴露:统一门面与配置(实现已迁入 app
"""
from app.features.payment.payment_config import PaymentConfig
from app.features.payment.payment_facade import PaymentService
from app.features.payment.payment_exceptions import PaymentConfigError, PaymentError
__all__ = [
"PaymentService",
"PaymentConfig",
"PaymentError",
"PaymentConfigError",
]