blob: 59febcc989dfb89bd6fad9b4c4e05bc795b0b27d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# coding=utf-8
from enum import Enum, IntEnum
class ErrorCodes(IntEnum):
unknown_route = 0
unauthorized = 1
invalid_api_key = 2
incorrect_parameters = 3
bad_data_format = 4
class ValidationTypes(Enum):
json = "json"
params = "params"
OWNER_ROLE = 267627879762755584
ADMIN_ROLE = 267628507062992896
MODERATOR_ROLE = 267629731250176001
HELPER_ROLE = 267630620367257601
|