ezidam/crates/openid/src/lib.rs

13 lines
307 B
Rust

mod configuration;
mod error;
mod response_types;
mod scopes;
/// Exports
pub use configuration::configuration;
pub use error::Error;
pub use response_types::{parse_response_types, supported_response_types};
pub use scopes::SupportedScopes;
/// Type exports
pub use openidconnect::core::CoreResponseType;