Files
gitlab-instance-0a899031_sa…/app/sdk/__init__.py
2026-03-15 19:12:12 -05:00

21 lines
484 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.
"""
PayJS API SDK 模块
- payment: 支付网关ZPAY/XorPay
- pocketbase: PocketBase 数据库
- minio: MinIO 对象存储
- memos: Memos 用户(仅 nomadvip 使用)
"""
from .payment import get_payment_provider, ZPayProvider, XorPayProvider
from .pocketbase import PocketBaseSDK
from .minio import MinioSDK
from .memos import MemosSDK
__all__ = [
"get_payment_provider",
"ZPayProvider",
"XorPayProvider",
"PocketBaseSDK",
"MinioSDK",
"MemosSDK",
]