rauthy-client 0.14.0

Client for the Rauthy OIDC IAM project
1
2
3
4
5
6
7
8
9
10
11
use serde::Deserialize;

pub mod logout_token;

#[cfg(feature = "axum")]
pub mod axum;

#[derive(Debug, Default, Deserialize)]
pub struct LogoutRequest {
    pub logout_token: String,
}