1
0
Fork 0
promty/puppy/app/healthcheck.cpp

6 lines
147 B
C++

#include "http/httplib.h"
int main() {
auto res = httplib::Client("127.0.0.1", 80).Get("/health");
return !(res && res->status == 200);
}