mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
31 lines
875 B
Go
31 lines
875 B
Go
package event
|
|
|
|
const SYSTEM_DISCONNECT = "system/disconnect"
|
|
|
|
const SIGNAL_ANSWER = "signal/answer"
|
|
const SIGNAL_PROVIDE = "signal/provide"
|
|
|
|
const IDENTITY_PROVIDE = "identity/provide"
|
|
const IDENTITY_DETAILS = "identity/details"
|
|
|
|
const MEMBER_LIST = "member/list"
|
|
const MEMBER_CONNECTED = "member/connected"
|
|
const MEMBER_DISCONNECTED = "member/disconnected"
|
|
|
|
const CONTROL_LOCKED = "control/locked"
|
|
const CONTROL_RELEASE = "control/release"
|
|
const CONTROL_REQUEST = "control/request"
|
|
const CONTROL_REQUESTING = "control/requesting"
|
|
|
|
const CHAT_MESSAGE = "chat/message"
|
|
const CHAT_EMOJI = "chat/emoji"
|
|
|
|
const ADMIN_BAN = "admin/ban"
|
|
const ADMIN_KICK = "admin/kick"
|
|
const ADMIN_LOCK = "admin/lock"
|
|
const ADMIN_MUTE = "admin/mute"
|
|
const ADMIN_UNLOCK = "admin/unlock"
|
|
const ADMIN_UNMUTE = "admin/unmute"
|
|
const ADMIN_CONTROL = "admin/control"
|
|
const ADMIN_RELEASE = "admin/release"
|