refactor: changed removing secret from store returns error

This commit is contained in:
David Allen 2025-03-20 09:28:24 -06:00
parent 17350ab99b
commit e38402edc3
Signed by: towk
GPG key ID: 793B2924A49B3A3F
3 changed files with 11 additions and 4 deletions

View file

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