aboutsummaryrefslogtreecommitdiff
path: root/src/clog.c
blob: 31efef89b8ed08db951d305507840380bbeae8e1 (plain)
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);
}