Skip to main content

haste_health/cli/
mod.rs

1//! Shared CLI plumbing: persisted state (`config`, `secrets`) and the FHIR HTTP `client`
2//! built from it. Not user-facing commands themselves — see [`crate::commands`] for those.
3
4pub(crate) mod client;
5pub(crate) mod config;
6pub(crate) mod secrets;
7pub(crate) mod state;