7 lines
96 B
Python
7 lines
96 B
Python
from enum import IntEnum
|
|
|
|
|
|
class AdminCode(IntEnum):
|
|
DISABLED = 30001
|
|
FORBIDDEN = 30002
|