mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-17 17:51:20 +08:00
62 lines
846 B
Python
62 lines
846 B
Python
"""过渡期 ``astrbot_sdk.api.message_components`` compat facade。"""
|
|
|
|
from .message.components import (
|
|
At,
|
|
AtAll,
|
|
BaseMessageComponent,
|
|
ComponentTypes,
|
|
ComponentType,
|
|
CompT,
|
|
Contact,
|
|
Dice,
|
|
Face,
|
|
File,
|
|
Forward,
|
|
Image,
|
|
Json,
|
|
Location,
|
|
Music,
|
|
Node,
|
|
Nodes,
|
|
Plain,
|
|
Poke,
|
|
Record,
|
|
Reply,
|
|
RPS,
|
|
Shake,
|
|
Share,
|
|
Unknown,
|
|
Video,
|
|
WechatEmoji,
|
|
)
|
|
|
|
__all__ = [
|
|
"At",
|
|
"AtAll",
|
|
"BaseMessageComponent",
|
|
"ComponentTypes",
|
|
"ComponentType",
|
|
"CompT",
|
|
"Contact",
|
|
"Dice",
|
|
"Face",
|
|
"File",
|
|
"Forward",
|
|
"Image",
|
|
"Json",
|
|
"Location",
|
|
"Music",
|
|
"Node",
|
|
"Nodes",
|
|
"Plain",
|
|
"Poke",
|
|
"Record",
|
|
"Reply",
|
|
"RPS",
|
|
"Shake",
|
|
"Share",
|
|
"Unknown",
|
|
"Video",
|
|
"WechatEmoji",
|
|
]
|