mirror of
https://github.com/FAUSheppy/open-web-leaderboard.git
synced 2025-12-06 07:01:36 +01:00
9 lines
258 B
Python
9 lines
258 B
Python
POSITIONS_NAMES = ["Top", "Jungle", "Mid", "Bottom", "Support" ]
|
|
DATABASE_PRIO_NAMES = ["prioTop", "prioJungle", "prioMid", "prioBot", "prioSupport" ]
|
|
TYPE_JSON = 'application/json'
|
|
|
|
HTTP_OK = 200
|
|
|
|
def VALID_INDEX(index):
|
|
return index == 0 or index == 1
|