From dd5411a8d709520c19a2e3577064b6c1bc289e64 Mon Sep 17 00:00:00 2001 From: Michael McVady Date: Fri, 12 Jan 2024 16:33:49 -0600 Subject: Stub out search ... --- src/clog.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/clog.c') diff --git a/src/clog.c b/src/clog.c index e27db22..feedd98 100644 --- a/src/clog.c +++ b/src/clog.c @@ -67,6 +67,7 @@ int get_index(struct http_request *req); int get_entry(struct http_request *req); int edit_entry(struct http_request *req); int update_entry(struct http_request *req); +int search_entries(struct http_request *req); int sql_select(struct entry_query *eq); int sql_update(const char *id, const char *title, const char *body); @@ -407,6 +408,19 @@ out: ; return KORE_RESULT_OK; } + +int search_entries(struct http_request *req) { + // int err = 0; + + kore_log(LOG_INFO, "search ...."); + + http_err_resp(req, HTTP_STATUS_OK); + +// out: ; + + return KORE_RESULT_OK; +} + int sql_select(struct entry_query *eq) { int err = KORE_RESULT_OK; -- cgit v1.2.3