summaryrefslogtreecommitdiff
path: root/src/push/handlers
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2025-08-03 23:19:32 -0400
committerKit La Touche <kit@transneptune.net>2025-08-03 23:19:32 -0400
commit39282cf5d9494290a674a01a3f1f8172badcb16e (patch)
tree598423e56786d4d05af3121d2334014a39166e3c /src/push/handlers
parenteaf95ece7dfb4d4d591b2f501183b2706653742e (diff)
Remove echo and broadcast web-push logic
They were just there for hand-testing. We don't want them in the final server.
Diffstat (limited to 'src/push/handlers')
-rw-r--r--src/push/handlers/mod.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/push/handlers/mod.rs b/src/push/handlers/mod.rs
index 4b27ff5..14549cb 100644
--- a/src/push/handlers/mod.rs
+++ b/src/push/handlers/mod.rs
@@ -2,12 +2,9 @@ use axum::extract::State;
use crate::app::App;
-mod echo;
mod register;
mod unregister;
-pub use echo::handler as echo;
-pub use echo::broadcast as broadcast;
pub use register::handler as register;
pub use unregister::handler as unregister;