summaryrefslogtreecommitdiff
path: root/angelsharkd/src/routes/extensions/simple_search.rs
diff options
context:
space:
mode:
Diffstat (limited to 'angelsharkd/src/routes/extensions/simple_search.rs')
-rw-r--r--angelsharkd/src/routes/extensions/simple_search.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/angelsharkd/src/routes/extensions/simple_search.rs b/angelsharkd/src/routes/extensions/simple_search.rs
new file mode 100644
index 0000000..454dba3
--- /dev/null
+++ b/angelsharkd/src/routes/extensions/simple_search.rs
@@ -0,0 +1,14 @@
+use crate::config::Config;
+use std::convert::Infallible;
+use warp::{path, post, Filter, Rejection, Reply};
+
+const CMD_LIST_EXT: &str = "list extension-type";
+const CMD_LIST_STAT: &str = "list station";
+
+pub fn filter() -> impl Filter<Extract = impl Reply, Error = Rejection> + Clone {
+ path("search").and(post()).and_then(handle_simple_search)
+}
+
+async fn handle_simple_search() -> Result<impl Reply, Infallible> {
+ Ok("Search!")
+}