summaryrefslogtreecommitdiff
path: root/src/api/users.rs
diff options
context:
space:
mode:
authormrw1593 <botahamec@outlook.com>2023-05-29 16:15:33 -0400
committermrw1593 <botahamec@outlook.com>2023-05-29 16:15:33 -0400
commit8ee2802e8e1b3c443485dce002115389f2ba8f75 (patch)
treef8182792c54af37b8058968726fffc18fd477581 /src/api/users.rs
parent747b7e6d399dc70c15262348ec763037c77f2013 (diff)
Stub out a token endpoint
Diffstat (limited to 'src/api/users.rs')
-rw-r--r--src/api/users.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/users.rs b/src/api/users.rs
index 2cd70c0..391a059 100644
--- a/src/api/users.rs
+++ b/src/api/users.rs
@@ -115,7 +115,7 @@ async fn get_username(
}
/// A request to create or update user information
-#[derive(Debug, Clone, Deserialize)]
+#[derive(Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
struct UserRequest {
username: Box<str>,