Files
AstrBot/src-new/astrbot_sdk/api/message_components.py

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",
]