Fil med användbara konstanter
This commit is contained in:
@@ -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'
|
||||
Reference in New Issue
Block a user