mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 22:24:23 +01:00
13 lines
247 B
Python
13 lines
247 B
Python
# Locator
|
|
LOCATOR_LEN_HEX = 32
|
|
LOCATOR_LEN_BYTES = LOCATOR_LEN_HEX // 2
|
|
|
|
# HTTP
|
|
HTTP_OK = 200
|
|
HTTP_BAD_REQUEST = 400
|
|
HTTP_NOT_FOUND = 404
|
|
HTTP_SERVICE_UNAVAILABLE = 503
|
|
|
|
# Temporary constants, may be changed
|
|
ENCRYPTED_BLOB_MAX_SIZE_HEX = 2 * 2048
|