diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/clog.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/clog.c b/src/clog.c new file mode 100644 index 0000000..7205d87 --- /dev/null +++ b/src/clog.c @@ -0,0 +1,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); +} |