You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dorm/xorm.go

17 lines
243 B

package dorm
import (
"xorm.io/xorm"
)
type XormClientConfigXorm struct {
Dns string // 地址
}
// XormClient
// https://xorm.io/
type XormClient struct {
Db *xorm.Engine // 驱动
config *XormClientConfigXorm // 配置
}