aboutsummaryrefslogtreecommitdiff
path: root/src/clog.c
diff options
context:
space:
mode:
authorMichael McVady <femtonaut@gmail.com>2021-08-15 01:59:05 +0000
committerMichael McVady <femtonaut@gmail.com>2021-08-15 01:59:05 +0000
commit5398969c4df8af7a59f377d14fa376b058572149 (patch)
tree509888910d9ec00abf877579244cb7cf7160069e /src/clog.c
Initial commit
Diffstat (limited to 'src/clog.c')
-rw-r--r--src/clog.c11
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);
+}