mirror of
https://github.com/typesense/typesense.git
synced 2025-05-18 12:42:50 +08:00
11 lines
266 B
C
11 lines
266 B
C
#pragma once
|
|
|
|
#include "http_server.h"
|
|
|
|
void post_create_collection(http_req & req, http_res & res);
|
|
|
|
void get_search(http_req & req, http_res & res);
|
|
|
|
void post_add_document(http_req & req, http_res & res);
|
|
|
|
void del_remove_document(http_req & req, http_res & res); |