11 lines
201 B
Go
11 lines
201 B
Go
package sqlbuilder
|
|
|
|
import "reflect"
|
|
|
|
func indirect(reflectValue reflect.Value) reflect.Value {
|
|
for reflectValue.Kind() == reflect.Ptr {
|
|
reflectValue = reflectValue.Elem()
|
|
}
|
|
return reflectValue
|
|
}
|