mirror of
https://github.com/Noettore/lagomareGateKeeperBot.git
synced 2025-10-14 19:16:40 +02:00
5 lines
75 B
Python
5 lines
75 B
Python
from enum import Enum
|
|
|
|
class Status(Enum):
|
|
ENABLED = 1
|
|
DISABLED = 0 |