save experimentation

This commit is contained in:
2025-11-17 11:32:56 -05:00
parent 83c1cc82b6
commit 706ca62552
10 changed files with 246 additions and 17 deletions

View File

@@ -10,6 +10,9 @@ pub struct LocalFileSecretStore;
impl LocalFileSecretStore {
/// Helper to consistently generate the secret file path.
fn get_file_path(base_dir: &Path, ns: &str, key: &str) -> PathBuf {
info!{
"LOCAL_STORE: Getting key '{key}' from namespace '{ns}'"
};
base_dir.join(format!("{ns}_{key}.json"))
}
}