diff --git a/src/callers/login.rs b/src/callers/login.rs index b1c79ab..1e84e97 100644 --- a/src/callers/login.rs +++ b/src/callers/login.rs @@ -149,7 +149,13 @@ pub mod endpoint { } // TODO: Add endpoint to get a refresh token - pub async fn refresh_token(axum::Extension(pool): axum::Extension, axum::Json(payload): axum::Json) -> (axum::http::StatusCode, axum::Json) { + pub async fn refresh_token( + axum::Extension(pool): axum::Extension, + axum::Json(payload): axum::Json, + ) -> ( + axum::http::StatusCode, + axum::Json, + ) { let mut response = response::refresh_token::Response::default(); let key = icarus_envy::environment::get_secret_key().await;