()
| 2139 | } |
| 2140 | |
| 2141 | fn provider_routes() -> Router<Arc<ServerState>> { |
| 2142 | Router::new() |
| 2143 | .route("/", get(list_providers)) |
| 2144 | .route("/auth", get(get_provider_auth)) |
| 2145 | .route("/{id}/oauth/authorize", post(oauth_authorize)) |
| 2146 | .route("/{id}/oauth/callback", post(oauth_callback)) |
| 2147 | } |
| 2148 | |
| 2149 | #[derive(Debug, Serialize)] |
| 2150 | pub struct ProviderListResponse { |