Files
podman/vendor/go.podman.io/common/pkg/secrets/define/secrets.go
Paul Holzinger dbfddb82cb vendor: update go.podman.io/{common,image,storage}
Update to the latest tags to make sure they all work correctly.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
2025-09-03 17:46:02 +02:00

17 lines
428 B
Go

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")
)