mirror of
https://github.com/akyaiy/GoSally-mvp.git
synced 2026-01-03 17:52:24 +00:00
- Change package name general_server to gateway - Changing the structure of directories and packages - Adding vendor to the project
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()
|
|
}
|