aboutsummaryrefslogtreecommitdiff
path: root/src/urls.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/urls.rs')
-rw-r--r--src/urls.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/urls.rs b/src/urls.rs
new file mode 100644
index 0000000..45720b6
--- /dev/null
+++ b/src/urls.rs
@@ -0,0 +1,5 @@
+pub use warp::path;
+
+use crate::http::Response;
+
+pub type UrlMap = warp::filters::BoxedFilter<(Response,)>;