diff --git a/smartassist/src/enum.py b/smartassist/src/enum.py new file mode 100644 index 0000000..2da83a5 --- /dev/null +++ b/smartassist/src/enum.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