diff options
| author | mrw1593 <botahamec@outlook.com> | 2023-05-29 16:15:33 -0400 |
|---|---|---|
| committer | mrw1593 <botahamec@outlook.com> | 2023-05-29 16:15:33 -0400 |
| commit | 8ee2802e8e1b3c443485dce002115389f2ba8f75 (patch) | |
| tree | f8182792c54af37b8058968726fffc18fd477581 /src/api/users.rs | |
| parent | 747b7e6d399dc70c15262348ec763037c77f2013 (diff) | |
Stub out a token endpoint
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 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>, |
