fix: added missing funcs for secret store implementations

This commit is contained in:
David Allen 2025-03-19 11:36:29 -06:00 committed by David Allen
parent 35cf2222a0
commit b49b1f761d
Signed by: towk
GPG key ID: 0430CDBE22619155
2 changed files with 6 additions and 0 deletions

View file

@ -28,3 +28,7 @@ func (s *StaticStore) ListSecrets() (map[string]string, error) {
"static_creds": fmt.Sprintf(`{"username":"%s","password":"%s"}`, s.Username, s.Password),
}, nil
}
func (s *StaticStore) RemoveSecretByID(secretID string) {
// Nothing to do here, since nothing is being stored
}