1#![allow(clippy::pedantic)] 2 3pub mod credential; 4pub mod error; 5pub mod identity; 6pub mod rbac; 7 8pub use credential::*; 9pub use error::*; 10pub use identity::*; 11pub use rbac::*; 12 13#[cfg(test)] 14mod lib_test; 15