mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 11:37:01 -07:00
chore: more miscellaneous updates
This commit is contained in:
parent
7ffb080c7e
commit
094fb0df3b
6 changed files with 56 additions and 31 deletions
|
|
@ -1,7 +1,13 @@
|
|||
package secrets
|
||||
|
||||
import "errors"
|
||||
|
||||
const DEFAULT_KEY = "default"
|
||||
|
||||
var (
|
||||
ErrLoadFailedCreds = errors.New("failed to load BMC credentials")
|
||||
)
|
||||
|
||||
type SecretStore interface {
|
||||
GetSecretByID(secretID string) (string, error)
|
||||
StoreSecretByID(secretID, secret string) error
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue