//! Core library for fnox: provider implementations, config types, secret resolution.
//!
//! This crate is the reusable engine underneath the `fnox` binary. It contains the
//! [`Provider`](providers::Provider) trait, every provider implementation, the config
//! data types, the secret resolver, the lease backends, and the [`Fnox`](library::Fnox)
//! convenience API for downstream consumers.
//!
//! The `fnox` binary depends on this crate and adds CLI-shaped bits (commands, MCP
//! server, TUI, shell integration, hook-env machinery) on top.
// Re-export commonly used items
pub use ;
pub use Fnox;