blob: fa678647ee639e8c2b2046b86b8d0e1b0c5db61a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 */
}
|