mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
20 lines
377 B
Go
20 lines
377 B
Go
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
|
|
})
|
|
}
|