summaryrefslogtreecommitdiffstats
path: root/plugins/check_users.d/config.h
blob: 26d3ee7043f9e56109259fdc83927967a953a62f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma once

#include "output.h"
#include "thresholds.h"

typedef struct check_users_config {
	mp_thresholds thresholds;

	bool output_format_is_set;
	mp_output_format output_format;
} check_users_config;

check_users_config check_users_config_init() {
	check_users_config tmp = {
		.thresholds = mp_thresholds_init(),

		.output_format_is_set = false,
	};
	return tmp;
}