mirror of
https://github.com/docker/cli.git
synced 2026-08-24 02:24:17 -05:00
- drop support for go1.24 - update vendor.mod to go1.25.0 - update //go:build tags to go1.25 The golang.org/x/ dependencies now require go1.25 as a minimum, so updating our build tags accordingly. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
25 lines
530 B
Go
25 lines
530 B
Go
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
|
|
//go:build go1.25
|
|
|
|
package registry
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func invalidParam(err error) error {
|
|
return invalidParameterErr{err}
|
|
}
|
|
|
|
func invalidParamf(format string, args ...any) error {
|
|
return invalidParameterErr{fmt.Errorf(format, args...)}
|
|
}
|
|
|
|
type invalidParameterErr struct{ error }
|
|
|
|
func (invalidParameterErr) InvalidParameter() {}
|
|
|
|
func (e invalidParameterErr) Unwrap() error {
|
|
return e.error
|
|
}
|