Files
harmony/fleet/harmony-fleet-agent/src/config.rs
2026-05-20 13:41:40 -04:00

10 lines
407 B
Rust

//! Agent-side config loading.
//!
//! The schema (`AgentConfig`, `AgentSection`, `NatsSection`,
//! `CredentialsSection`) lives in `harmony-fleet-auth` so it is shared
//! with the deploy crate by type, not by string interpolation. This
//! file re-exports those types so existing `crate::config::*` call
//! sites in the agent binary keep working.
pub use harmony_fleet_auth::{AgentConfig, load_config};