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.
10 lines
165 B
10 lines
165 B
from holster.enum import Enum
|
|
|
|
VoiceOPCode = Enum(
|
|
IDENTIFY=0,
|
|
SELECT_PROTOCOL=1,
|
|
READY=2,
|
|
HEARTBEAT=3,
|
|
SESSION_DESCRIPTION=4,
|
|
SPEAKING=5,
|
|
)
|
|
|