mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-03 01:40:21 +08:00
9 lines
169 B
Python
9 lines
169 B
Python
|
|
"""
|
||
|
|
认证插件模块
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .api_key import ApiKeyAuthPlugin
|
||
|
|
from .base import AuthContext, AuthPlugin
|
||
|
|
|
||
|
|
__all__ = ["AuthPlugin", "AuthContext", "ApiKeyAuthPlugin"]
|