pub fn load_default_memory_config() -> MemoryConfigExpand description
Load the default memory configuration using unified config resolution.
Resolution order:
ENACT_MEMORY_CONFIG_PATHenvironment variable./memory.yamlin current working directory~/.enact/memory.yaml- Hardcoded defaults
ยงExample
use enact_memory::config::load_default_memory_config;
let config = load_default_memory_config();
println!("Backend: {}", config.backend);