openid: configuration: split scopes and response types in own mods, to be used in ezidam later

This commit is contained in:
Philippe Loctaux 2023-03-13 23:31:00 +01:00
parent 3d065bbc22
commit a0c0c3fa8f
6 changed files with 46 additions and 13 deletions

View file

@ -1,6 +1,13 @@
mod configuration;
mod error;
mod openid;
mod response_types;
mod scopes;
/// Exports
pub use crate::openid::configuration;
pub use configuration::configuration;
pub use error::Error;
pub use response_types::supported_response_types;
pub use scopes::SupportedScopes;
/// Type exports
pub use openidconnect::core::CoreResponseType;