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

17 lines
303 B
Go
Raw Normal View History

// Copyright 2017 The Xorm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
2016-11-03 23:16:01 +01:00
package xorm
import (
"reflect"
2016-11-03 23:16:01 +01:00
"xorm.io/core"
2016-11-03 23:16:01 +01:00
)
var (
ptrPkType = reflect.TypeOf(&core.PK{})
pkType = reflect.TypeOf(core.PK{})
)