aboutsummaryrefslogtreecommitdiff
path: root/src/clog.c
blob: 7205d87842538c6b47a664f6a85bfda759c9007c (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <kore/kore.h>
#include <kore/http.h>

int		page(struct http_request *);

int
page(struct http_request *req)
{
	http_response(req, 200, NULL, 0);
	return (KORE_RESULT_OK);
}