mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-16 09:40:30 +08:00
16 lines
275 B
Python
16 lines
275 B
Python
"""旧版顶层导入路径的兼容重导出。"""
|
|
|
|
from ._legacy_api import (
|
|
CommandComponent,
|
|
Context,
|
|
LegacyContext,
|
|
LegacyConversationManager,
|
|
)
|
|
|
|
__all__ = [
|
|
"CommandComponent",
|
|
"Context",
|
|
"LegacyContext",
|
|
"LegacyConversationManager",
|
|
]
|