6 lines
147 B
C++
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);
|
|
}
|