1 Star 1 Fork 0

妙音 / oils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
service.go 316 Bytes
一键复制 编辑 原始数据 按行查看 历史
妙音 提交于 2021-05-15 09:24 . 数据库关闭
package level
import "sync"
// Service 数据库服务.
type Service struct {
DB DB
seqMap sync.Map
}
// NewService 新建数据库服务.
func NewService(db DB) *Service {
return &Service{
DB: db,
seqMap: sync.Map{},
}
}
// Close 关闭.
func (p *Service) Close() error {
return p.DB.Close()
}
1
https://gitee.com/xuender/oils.git
git@gitee.com:xuender/oils.git
xuender
oils
oils
v1.1.23

搜索帮助