libs.functions.events

イベントAPI処理

Exports:

 1"""
 2イベントAPI処理
 3
 4Exports:
 5- `libs.functions.events.home_tab`: ホームタブオープンイベント
 6- `libs.functions.events.message_event`: メッセージイベント
 7- `libs.functions.events.slash_command`: スラッシュコマンドイベント
 8"""
 9
10from . import home_tab, message_event, slash_command
11
12__all__ = ["home_tab", "message_event", "slash_command"]