Files
open-web-leaderboard/constants.py
Yannik Schmidt 159871be47 Lol
2021-12-20 19:55:51 +01:00

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