Some checks failed
Run Check Script / check (pull_request) Failing after 1m51s
10 lines
407 B
Rust
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};
|