summaryrefslogtreecommitdiff
path: root/webhook/src/handler/mod.rs
diff options
context:
space:
mode:
authorMatthieu <matthieu@developershouse.xyz>2021-10-18 10:44:53 +0400
committerMatthieu <matthieu@developershouse.xyz>2021-10-18 10:44:53 +0400
commitbeacbc6c79c2543bf5ed7386554e3ac6b2d1b9a0 (patch)
tree9a09183e1a512e8677cb922af71c9c68f031ce45 /webhook/src/handler/mod.rs
parente58e816ceb8caa3c77dd98a952761b7e7f05b6cb (diff)
fix tests and adapt webhook
Diffstat (limited to 'webhook/src/handler/mod.rs')
-rw-r--r--webhook/src/handler/mod.rs7
1 files changed, 3 insertions, 4 deletions
diff --git a/webhook/src/handler/mod.rs b/webhook/src/handler/mod.rs
index a437dd5..20a977a 100644
--- a/webhook/src/handler/mod.rs
+++ b/webhook/src/handler/mod.rs
@@ -1,8 +1,7 @@
+mod error;
+mod handler;
pub mod make_service;
mod signature;
-mod handler;
-mod types;
-mod error;
#[cfg(test)]
-pub mod tests; \ No newline at end of file
+pub mod tests;