diff options
Diffstat (limited to 'plugins/check_users.d/config.h')
-rw-r--r-- | plugins/check_users.d/config.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/plugins/check_users.d/config.h b/plugins/check_users.d/config.h deleted file mode 100644 index 35b7b7f8..00000000 --- a/plugins/check_users.d/config.h +++ /dev/null | |||
@@ -1,19 +0,0 @@ | |||
1 | #pragma once | ||
2 | |||
3 | #include "output.h" | ||
4 | #include "thresholds.h" | ||
5 | typedef struct check_users_config { | ||
6 | mp_thresholds thresholds; | ||
7 | |||
8 | bool output_format_is_set; | ||
9 | mp_output_format output_format; | ||
10 | } check_users_config; | ||
11 | |||
12 | check_users_config check_users_config_init() { | ||
13 | check_users_config tmp = { | ||
14 | .thresholds = mp_thresholds_init(), | ||
15 | |||
16 | .output_format_is_set = false, | ||
17 | }; | ||
18 | return tmp; | ||
19 | } | ||