mirror of
https://github.com/elisspace/core.git
synced 2026-09-11 05:28:36 +00:00
9 lines
155 B
Python
9 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'
|