pub mod audit;
pub mod breaker;
pub mod email;
pub mod error;
pub mod gauntlet;
pub mod generic_store;
pub mod google;
pub mod handle;
pub mod resolver;
pub mod store;
pub mod telegram;
pub mod telemetry;
pub mod whatsapp;
pub mod wire;
pub use breaker::{BreakerRegistry, BreakerState};
pub use generic_store::{validate_all_stores, GenericCredentialStore, TypedStoreAdapter};
pub use wire::{build_credentials, load_google_auth, print_report, CredentialsBundle};
pub use error::{BuildError, CredentialError, ResolveError};
pub use handle::{AgentId, Channel, CredentialHandle, Fingerprint};
pub use resolver::{AgentCredentialResolver, AgentCredentialsInput, CredentialStores, StrictLevel};
pub use store::{CredentialStore, ValidationReport};
pub use email::{load_email_secrets, EmailAccount, EmailAuth, EmailCredentialStore};