diff options
| author | Kit La Touche <kit@transneptune.net> | 2025-08-03 23:19:32 -0400 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2025-08-03 23:19:32 -0400 |
| commit | 39282cf5d9494290a674a01a3f1f8172badcb16e (patch) | |
| tree | 598423e56786d4d05af3121d2334014a39166e3c /src/push/handlers | |
| parent | eaf95ece7dfb4d4d591b2f501183b2706653742e (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.rs | 3 |
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; |
