#include #include int page(struct http_request *); int page(struct http_request *req) { char *resp_body = "clog lives!\r\n"; http_response(req, 200, resp_body, strlen(resp_body)); return (KORE_RESULT_OK); }