1use std::path::PathBuf;
2
3pub fn claude_config_json_path(home: &std::path::Path) -> PathBuf {
4 crate::core::editor_registry::claude_mcp_json_path(home)
5}
6
7pub fn claude_config_dir(home: &std::path::Path) -> PathBuf {
8 crate::core::editor_registry::claude_state_dir(home)
9}