Add iptable-parser as submodule

This commit is contained in:
infidel
2023-10-30 14:40:43 +07:00
parent 64c9e9c11b
commit be27c0882e
35887 changed files with 2661509 additions and 69 deletions

View File

@@ -0,0 +1,21 @@
DEBUG = 10
INFO = 20
SUCCESS = 25
WARNING = 30
ERROR = 40
DEFAULT_TAGS = {
DEBUG: "debug",
INFO: "info",
SUCCESS: "success",
WARNING: "warning",
ERROR: "error",
}
DEFAULT_LEVELS = {
"DEBUG": DEBUG,
"INFO": INFO,
"SUCCESS": SUCCESS,
"WARNING": WARNING,
"ERROR": ERROR,
}