1 2 3 4 5 6 7 8 9 10 11 12 13
/// Authentication client for the Brainwires backend. pub mod client; /// Session persistence and management. pub mod session; /// Authentication types (session, profile, config). pub mod types; #[cfg(feature = "auth-keyring")] pub mod keyring; pub use client::AuthClient; pub use session::SessionManager; pub use types::*;