diff --git a/pubky-homeserver/src/routes/auth.rs b/pubky-homeserver/src/routes/auth.rs index a4f36fc..1075f48 100644 --- a/pubky-homeserver/src/routes/auth.rs +++ b/pubky-homeserver/src/routes/auth.rs @@ -1,5 +1,4 @@ use axum::{ - debug_handler, extract::{Host, State}, http::StatusCode, response::IntoResponse, @@ -20,7 +19,6 @@ use crate::{ server::AppState, }; -#[debug_handler] pub async fn signup( State(state): State, user_agent: Option>, diff --git a/pubky-homeserver/src/routes/public.rs b/pubky-homeserver/src/routes/public.rs index 50bddf3..bd61e23 100644 --- a/pubky-homeserver/src/routes/public.rs +++ b/pubky-homeserver/src/routes/public.rs @@ -1,6 +1,5 @@ use axum::{ body::Body, - debug_handler, extract::State, http::{header, Response, StatusCode}, response::IntoResponse, @@ -17,7 +16,6 @@ use crate::{ server::AppState, }; -#[debug_handler] pub async fn put( State(mut state): State, pubky: Pubky,