-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0c933c5
commit f6d8016
Showing
3 changed files
with
67 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,54 @@ | ||
from __future__ import annotations | ||
|
||
from .connection import ( | ||
HTTP as HTTP, | ||
HTTPWebhook as HTTPWebhook, | ||
) | ||
from .connection_ws import ( | ||
WebSocket as WebSocket, | ||
WebSocketReverse as WebSocketReverse, | ||
) | ||
from .event import ( | ||
ChannelCreateEvent as ChannelCreateEvent, | ||
ChannelDeleteEvent as ChannelDeleteEvent, | ||
ChannelMemberDecreaseEvent as ChannelMemberDecreaseEvent, | ||
ChannelMemberIncreaseEvent as ChannelMemberIncreaseEvent, | ||
ChannelMessageDeleteEvent as ChannelMessageDeleteEvent, | ||
ChannelMessageEvent as ChannelMessageEvent, | ||
Event as Event, | ||
FriendDecreaseEvent as FriendDecreaseEvent, | ||
FriendIncreaseEvent as FriendIncreaseEvent, | ||
GroupMemberDecreaseEvent as GroupMemberDecreaseEvent, | ||
GroupMemberIncreaseEvent as GroupMemberIncreaseEvent, | ||
GroupMessageDeleteEvent as GroupMessageDeleteEvent, | ||
GroupMessageEvent as GroupMessageEvent, | ||
GuildMemberDecreaseEvent as GuildMemberDecreaseEvent, | ||
GuildMemberIncreaseEvent as GuildMemberIncreaseEvent, | ||
MessageEvent as MessageEvent, | ||
MetaConnectEvent as MetaConnectEvent, | ||
MetaEvent as MetaEvent, | ||
MetaHeartbeatEvent as MetaHeartbeatEvent, | ||
MetaStatusUpdateEvent as MetaStatusUpdateEvent, | ||
NoticeEvent as NoticeEvent, | ||
PrivateMessageEvent as PrivateMessageEvent, | ||
RequestEvent as RequestEvent, | ||
) | ||
from .impl import OneBotImpl as OneBotImpl | ||
from .segment import ( | ||
Audio as Audio, | ||
File as File, | ||
Image as Image, | ||
Location as Location, | ||
Mention as Mention, | ||
MentionAll as MentionAll, | ||
Reply as Reply, | ||
Segment as Segment, | ||
Text as Text, | ||
Video as Video, | ||
Voice as Voice, | ||
) | ||
from .types import ( | ||
Bot as Bot, | ||
BotSelf as BotSelf, | ||
) | ||
from .version import __version__ as __version__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters