You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
314 B
18 lines
314 B
SEND = 1
|
|
RECV = 2
|
|
|
|
|
|
class OPCode(object):
|
|
DISPATCH = 0
|
|
HEARTBEAT = 1
|
|
IDENTIFY = 2
|
|
STATUS_UPDATE = 3
|
|
VOICE_STATE_UPDATE = 4
|
|
VOICE_SERVER_PING = 5
|
|
RESUME = 6
|
|
RECONNECT = 7
|
|
REQUEST_GUILD_MEMBERS = 8
|
|
INVALID_SESSION = 9
|
|
HELLO = 10
|
|
HEARTBEAT_ACK = 11
|
|
GUILD_SYNC = 12
|
|
|