xorm/types.go

13 lines
152 B
Go
Raw Normal View History

2016-04-07 00:54:02 +00:00
package xorm
import (
2017-01-09 01:52:23 +00:00
"reflect"
2016-04-07 00:54:02 +00:00
2017-01-09 01:52:23 +00:00
"github.com/go-xorm/core"
2016-04-07 00:54:02 +00:00
)
var (
ptrPkType = reflect.TypeOf(&core.PK{})
pkType = reflect.TypeOf(core.PK{})
)