chore(homeserver): remove debug_handler

This commit is contained in:
nazeh
2024-10-16 18:11:36 +03:00
parent fd88986a32
commit aace1aa8f0
2 changed files with 0 additions and 4 deletions

View File

@@ -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<AppState>,
user_agent: Option<TypedHeader<UserAgent>>,

View File

@@ -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<AppState>,
pubky: Pubky,