reg/vendor/github.com/docker/cli/cli/config/credentials/credentials.go
Jess Frazelle f180c93a39
update vendor
Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
2019-09-16 13:36:44 -07:00

18 lines
575 B
Go

package credentials
import (
"github.com/docker/cli/cli/config/types"
)
// Store is the interface that any credentials store must implement.
type Store interface {
// Erase removes credentials from the store for a given server.
Erase(serverAddress string) error
// Get retrieves credentials from the store for a given server.
Get(serverAddress string) (types.AuthConfig, error)
// GetAll retrieves all the credentials from the store.
GetAll() (map[string]types.AuthConfig, error)
// Store saves credentials in the store.
Store(authConfig types.AuthConfig) error
}