8 lines
155 B
Python
8 lines
155 B
Python
"""Websocket constants."""
|
|
ERR_ID_REUSE = 1
|
|
ERR_INVALID_FORMAT = 2
|
|
ERR_NOT_FOUND = 3
|
|
ERR_UNKNOWN_COMMAND = 4
|
|
ERR_UNKNOWN_ERROR = 5
|
|
|
|
TYPE_RESULT = 'result'
|