Skip to main content

agentic_codebase/config/
mod.rs

1//! Configuration loading and resolution.
2//!
3//! Supports TOML config files, environment variables, and CLI arguments
4//! with a well-defined priority chain.
5
6pub mod loader;
7
8pub use loader::{load_config, resolve_graph_path, ServerConfig};