feat: refactored gman usage to be generic and work with various vault providers and use the SupportedProvider enum directly for configurations

This commit is contained in:
2026-06-02 14:16:45 -06:00
parent 3a18ffdaf3
commit 960a199cd2
7 changed files with 261 additions and 29 deletions
+1 -1
View File
@@ -732,7 +732,7 @@ fn merge_mcp_json(
write_atomically(&final_path, &serialized)?;
let vault = Vault::init_bare();
let (_parsed, missing) = interpolate_secrets(&serialized, &vault);
let (_parsed, missing) = interpolate_secrets(&serialized, &vault)?;
let mut deduped: Vec<String> = Vec::new();
for s in missing {
if !deduped.contains(&s) {