prometheus-odoo-license-exp.../exporter.c

17 lines
306 B
C
Raw Normal View History

2021-09-27 14:46:40 +02:00
#include <stdio.h>
#include <stdlib.h>
#define USER "odoo"
#define HTTP_PORT 9402
#define INTERVAL 10
2021-09-27 14:48:30 +02:00
int main(int argc, char **argv) {
if (argc != 2) {
fprintf(stdout, "Invalid number of arguments. Usage: %s [dbname]\n",
argv[0]);
exit(EXIT_FAILURE);
}
2021-09-27 14:46:40 +02:00
2021-09-27 14:48:30 +02:00
return EXIT_SUCCESS;
2021-09-27 14:46:40 +02:00
}