summaryrefslogtreecommitdiff
path: root/angelsharkd/src/routes/extensions/simple_deprov.rs
diff options
context:
space:
mode:
authorAdam Carpenter <adam.carpenter@adp.com>2021-12-10 14:15:06 -0500
committerGitHub <noreply@github.com>2021-12-10 14:15:06 -0500
commitd3e1b697fec543e0197f1c549164c210504dde3b (patch)
treee10ec339108a8f8dbd2dd0f4737d580a0fc26ac1 /angelsharkd/src/routes/extensions/simple_deprov.rs
parent3eb745f153873d537bdc788170fc878543e7899e (diff)
parentf98a1fa3035fb4834441ead1cce6710739312e14 (diff)
downloadaltruistic-angelshark-d3e1b697fec543e0197f1c549164c210504dde3b.tar.xz
altruistic-angelshark-d3e1b697fec543e0197f1c549164c210504dde3b.zip
Merge pull request #6 from adpllc/extensions/simple_deprov
Simple Deprov Extension
Diffstat (limited to 'angelsharkd/src/routes/extensions/simple_deprov.rs')
-rw-r--r--angelsharkd/src/routes/extensions/simple_deprov.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/angelsharkd/src/routes/extensions/simple_deprov.rs b/angelsharkd/src/routes/extensions/simple_deprov.rs
deleted file mode 100644
index 2b5ad40..0000000
--- a/angelsharkd/src/routes/extensions/simple_deprov.rs
+++ /dev/null
@@ -1,5 +0,0 @@
-use warp::{Filter, Rejection, Reply};
-
-pub fn filter() -> impl Filter<Extract = impl Reply, Error = Rejection> + Clone {
- warp::path("deprov").map(|| -> &str { todo!() }) // TODO:
-}