oauth2_client/jwt_authorization_grant/mod.rs
1//! https://datatracker.ietf.org/doc/html/rfc7523#section-3.1
2
3//
4pub mod access_token_endpoint;
5pub mod provider_ext;
6
7pub use access_token_endpoint::{AccessTokenEndpoint, AccessTokenEndpointError};
8
9//
10#[cfg(feature = "with-flow")]
11pub mod flow;
12#[cfg(feature = "with-flow")]
13pub use flow::{Flow, FlowExecuteError};