mirror of
https://github.com/docker/docker-credential-helpers.git
synced 2026-06-13 16:01:28 +05:30
c45d9e9e28
[]string, []string -> map[string]string because the other APIs assume a 1:1 correspondence Signed-off-by: Jake Sanders <jsand@google.com>
15 lines
509 B
Go
15 lines
509 B
Go
package credentials
|
|
|
|
// Helper is the interface a credentials store helper must implement.
|
|
type Helper interface {
|
|
// Add appends credentials to the store.
|
|
Add(*Credentials) error
|
|
// Delete removes credentials from the store.
|
|
Delete(serverURL string) error
|
|
// Get retrieves credentials from the store.
|
|
// It returns username and secret as strings.
|
|
Get(serverURL string) (string, string, error)
|
|
// List returns the stored serverURLs and their associated usernames.
|
|
List() (map[string]string, error)
|
|
}
|