1 2 3 4 5 6 7 8 9 10 11 12
#include <kore/kore.h> #include <kore/http.h> 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); }