aboutsummaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorGravatar jesopo2019-12-10 05:26:16 +0000
committerGravatar jesopo2019-12-10 05:26:16 +0000
commit9d16f7d5237b3b7a55e01b375747e40d7c1ced43 (patch)
tree6caf8fc26e9aab399a9c1cfb93165ff01da44a59 /src/utils
parentuse get_list and set_list to move dynamic module en/disabling to bot.conf (diff)
signature
move sys.exit() codes to an enum in utils.consts
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/consts.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/utils/consts.py b/src/utils/consts.py
index d53a4660..423c7eac 100644
--- a/src/utils/consts.py
+++ b/src/utils/consts.py
@@ -1,4 +1,4 @@
-import typing
+import enum, typing
from . import _consts_256_color
class IRCColor(object):
@@ -68,3 +68,11 @@ ANSI_UNDERLINE_RESET = "\033[24m"
PERMISSION_HARD_FAIL = 0
PERMISSION_FORCE_SUCCESS = 1
PERMISSION_ERROR = 2
+
+class Exit(enum.Enum):
+ WRONGVERSION = 1
+ LOCKED = 2
+ DISCONNECT = 3
+ FATAL = 4
+
+ PANIC = 20