gitea/vendor/github.com/go-xorm/xorm/types.go

13 lines
158 B
Go
Raw Normal View History

2016-11-03 23:16:01 +01:00
package xorm
import (
"reflect"
"github.com/go-xorm/core"
)
var (
ptrPkType = reflect.TypeOf(&core.PK{})
pkType = reflect.TypeOf(core.PK{})
)