Vendor dependencies and expose control program binaries via nix build. Uses nixpkgs-unstable for Go 1.26 support. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
176 B
Go
11 lines
176 B
Go
//go:build go1.20
|
|
|
|
package mapstructure
|
|
|
|
import "reflect"
|
|
|
|
// TODO: remove once we drop support for Go <1.20
|
|
func isComparable(v reflect.Value) bool {
|
|
return v.Comparable()
|
|
}
|