mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 03:27:03 -07:00
7 lines
186 B
Go
7 lines
186 B
Go
package secrets
|
|
|
|
type SecretStore interface {
|
|
GetSecretByID(secretID string) (string, error)
|
|
StoreSecretByID(secretID, secret string) error
|
|
ListSecrets() (map[string]string, error)
|
|
}
|