feat: add default secret to local store

This commit is contained in:
David Allen 2025-03-31 15:35:15 -06:00 committed by David Allen
parent 92b05a81c7
commit 38e22ff24c
Signed by: towk
GPG key ID: 0430CDBE22619155
5 changed files with 72 additions and 7 deletions

View file

@ -1,5 +1,7 @@
package secrets
const DEFAULT_KEY = "default"
type SecretStore interface {
GetSecretByID(secretID string) (string, error)
StoreSecretByID(secretID, secret string) error