1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # OIDC Client module
//! Contains implementation of the client

#[allow(clippy::module_inception)]
mod client;

pub(super) mod helpers;

/// Getter & Setter method implementations for Client
pub mod client_get_set;

/// Implementaion of RP Client methods
pub mod client_impl;

pub use client::Client;