| 94 | |
| 95 | #[derive(Debug, Serialize, Deserialize)] |
| 96 | struct OauthResp { |
| 97 | state: CsrfToken, |
| 98 | code: AuthorizationCode, |
| 99 | } |
| 100 | |
| 101 | // Handle the response |
| 102 | pub(crate) async fn oauth_view(mut request: tide::Request<Arc<AppState>>) -> tide::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected