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/clients.rs | |
| parent | 747b7e6d399dc70c15262348ec763037c77f2013 (diff) | |
Stub out a token endpoint
Diffstat (limited to 'src/api/clients.rs')
| -rw-r--r-- | src/api/clients.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/clients.rs b/src/api/clients.rs index 7e8ca35..44504eb 100644 --- a/src/api/clients.rs +++ b/src/api/clients.rs @@ -95,7 +95,7 @@ async fn get_client_redirect_uris( Ok(HttpResponse::Ok().json(redirect_uris)) } -#[derive(Debug, Clone, Deserialize)] +#[derive(Clone, Deserialize)] struct ClientRequest { alias: Box<str>, ty: ClientType, |
