1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-30 07:05:50 +00:00
gitea/vendor/xorm.io/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 22:16:01 +00:00
package xorm
import (
"reflect"
2016-11-03 22:16:01 +00:00
"xorm.io/core"
2016-11-03 22:16:01 +00:00
)
var (
ptrPkType = reflect.TypeOf(&core.PK{})
pkType = reflect.TypeOf(core.PK{})
)