15 lines
229 B
C++
15 lines
229 B
C++
#include <unistd.h>
|
|
#include <stdio.h>
|
|
|
|
#include "http_healthcheck.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
http_healthcheck_server_start("./conf/http_healthcheck.conf");
|
|
|
|
sleep(30);
|
|
|
|
http_healthcheck_server_stop();
|
|
|
|
return 0;
|
|
} |