xianyu-backend-java/utils/geetest/__init__.py
2025-12-23 23:02:24 +08:00

13 lines
283 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.

"""
极验滑动验证码服务模块
功能:
1. 验证码初始化register
2. 二次验证validate
3. 支持正常模式和宕机降级模式
"""
from .geetest_lib import GeetestLib
from .geetest_config import GeetestConfig
__all__ = ["GeetestLib", "GeetestConfig"]