diff options
Diffstat (limited to '')
-rw-r--r-- | src/stats/stats-service.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/stats/stats-service.c b/src/stats/stats-service.c new file mode 100644 index 0000000..fa67864 --- /dev/null +++ b/src/stats/stats-service.c @@ -0,0 +1,15 @@ +/* Copyright (c) 2019 Dovecot authors, see the included COPYING file */ + +#include "stats-common.h" +#include "http-server.h" +#include "stats-service-private.h" + +void stats_services_init(void) +{ + stats_service_openmetrics_init(); +} + +void stats_services_deinit(void) +{ + /* Nothing yet */ +} |