diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-28 17:57:52 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-01-28 17:57:52 -0500 |
commit | 0fbecaba3dd4782e2b041fbc70c8651f4398b7bd (patch) | |
tree | 226d3c90dd7d7e322925bf088c01a300fe0d2df0 /src/api/users.rs | |
parent | merge (diff) | |
download | xssbook-0fbecaba3dd4782e2b041fbc70c8651f4398b7bd.tar.gz xssbook-0fbecaba3dd4782e2b041fbc70c8651f4398b7bd.tar.bz2 xssbook-0fbecaba3dd4782e2b041fbc70c8651f4398b7bd.zip |
new rust, clippy
Diffstat (limited to 'src/api/users.rs')
-rw-r--r-- | src/api/users.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/users.rs b/src/api/users.rs index 7bea200..97a9e6e 100644 --- a/src/api/users.rs +++ b/src/api/users.rs @@ -1,6 +1,6 @@ use axum::{Router, response::Response, routing::post}; use serde::Deserialize; -use crate::types::{extract::{AuthorizedUser, Json, Check, CheckResult}, response::ResponseCode, user::User}; +use crate::types::{extract::{AuthorizedUser, Json, Check, CheckResult}, http::ResponseCode, user::User}; #[derive(Deserialize)] struct UserLoadRequest { |