devicehub-django/utils/constants.py

23 lines
295 B
Python
Raw Normal View History

2024-06-12 07:32:49 +00:00
# constants declarated for all proyect
STR_XSM_SIZE = 16
STR_SM_SIZE = 32
STR_SIZE = 64
STR_BIG_SIZE = 128
2024-07-15 14:23:14 +00:00
STR_EXTEND_SIZE = 256
2024-07-18 15:21:22 +00:00
# Algorithms for build hids
HID_ALGO1 = [
"manufacturer",
"model",
"chassis",
"serialNumber",
"sku"
]
ALGOS = {
"hidalgo1": HID_ALGO1,
}