Fix merge objects

This commit is contained in:
世界 2025-02-10 18:59:17 +08:00
parent b55d1c78b3
commit 2238a05966
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 50 additions and 6 deletions

View file

@ -0,0 +1,20 @@
package json
import (
"reflect"
"github.com/sagernet/sing/common"
)
func ObjectKeys(object reflect.Type) []string {
switch object.Kind() {
case reflect.Pointer:
return ObjectKeys(object.Elem())
case reflect.Struct:
default:
panic("invalid non-struct input")
}
return common.Map(cachedTypeFields(object).list, func(field field) string {
return field.name
})
}