//! IAM Session re-export. //! //! Re-exports `Session` from the auth module for consistent IAM-boundary //! imports. Consumers of the IAM module import `Session` from here rather //! than from the core session module directly, keeping the dependency //! internal and allowing the IAM crate to own its domain vocabulary. pub use super::session::Session; /// Alias for `Session` used in IAM contexts to distinguish from other /// session types in the system. pub type IamSession = Session;