From c0b97871e7541609715dbb93506d2d73c24485e7 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Sun, 4 Aug 2024 23:39:51 +0200 Subject: [PATCH] Bytt namn till pluralform --- smartassist/src/enums.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 smartassist/src/enums.py diff --git a/smartassist/src/enums.py b/smartassist/src/enums.py new file mode 100644 index 0000000..2da83a5 --- /dev/null +++ b/smartassist/src/enums.py @@ -0,0 +1,10 @@ +# Some useful constants to be used in the code + +from enum import Enum + +class LogLevel(Enum): + DEBUG = 'DEBUG' + INFO = 'INFO' + WARNING = 'WARNING' + ERROR = 'ERROR' + CRITICAL = 'CRITICAL' \ No newline at end of file