Files
LoveACE-EndF/utils/__init__.py
2025-08-03 16:50:56 +08:00

6 lines
160 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.

try:
from .s3_client import s3_client
__all__ = ["s3_client"]
except ImportError:
# 如果S3客户端依赖不可用则不导出
__all__ = []