mirror of
https://github.com/davidallendj/magellan.git
synced 2025-12-20 03:27:03 -07:00
chore: more miscellaneous updates
This commit is contained in:
parent
5b474b74be
commit
b165fe2927
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