refactor: added func to remove secrets from store

This commit is contained in:
David Allen 2025-03-19 11:10:26 -06:00
parent 5b79031afa
commit 932daeafe1
Signed by: towk
GPG key ID: 793B2924A49B3A3F
3 changed files with 24 additions and 0 deletions

View file

@ -4,4 +4,5 @@ type SecretStore interface {
GetSecretByID(secretID string) (string, error)
StoreSecretByID(secretID, secret string) error
ListSecrets() (map[string]string, error)
RemoveSecretByID(secretID string)
}