mirror of
https://github.com/containers/podman.git
synced 2025-12-04 20:28:40 +08:00
update c/{buildah,common,image,storage} to latest main
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
This commit is contained in:
16
vendor/github.com/containers/common/pkg/secrets/define/secrets.go
generated
vendored
Normal file
16
vendor/github.com/containers/common/pkg/secrets/define/secrets.go
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
package define
|
||||
|
||||
import (
|
||||
"errors"
|
||||
)
|
||||
|
||||
var (
|
||||
// ErrNoSuchSecret indicates that the secret does not exist
|
||||
ErrNoSuchSecret = errors.New("no such secret")
|
||||
|
||||
// ErrSecretIDExists indicates that there is secret data already associated with an id
|
||||
ErrSecretIDExists = errors.New("secret data with ID already exists")
|
||||
|
||||
// ErrInvalidKey indicates that something about your key is wrong
|
||||
ErrInvalidKey = errors.New("invalid key")
|
||||
)
|
||||
Reference in New Issue
Block a user