libs.functions.events
イベントAPI処理
Exports:
libs.functions.events.home_tab
: ホームタブオープンイベントlibs.functions.events.message_event
: メッセージイベントlibs.functions.events.slash_command
: スラッシュコマンドイベント
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"]