1 2 3 4 5 6 7 8 9
// Source: /data/home/swei/claudecode/openclaudecode/src/memdir/memdir.ts //! Memory directory management pub fn init_memory_dir(path: &std::path::Path) -> std::io::Result<()> { std::fs::create_dir_all(path)?; std::fs::create_dir_all(path.join("team"))?; std::fs::create_dir_all(path.join("individual"))?; Ok(()) }