1 Star 0 Fork 0

xjinguang/goclean

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
impl.go 427 Bytes
一键复制 编辑 原始数据 按行查看 历史
xiaojg-mbp 提交于 2024-01-09 16:49 +08:00 . go11 补充用户创建
package impl
import (
"gitee.com/aviptle/goclean/go11jin/vblog01/apps/user"
"gitee.com/aviptle/goclean/go11jin/vblog01/conf"
"gitee.com/aviptle/goclean/go11jin/vblog01/ioc"
"gorm.io/gorm"
)
type impl struct {
db *gorm.DB
}
func (i *impl) Init() error {
db := conf.C().MySQL.ORM()
i.db = db.Debug()
return nil
}
func (i *impl) Name() string {
return user.Appname
}
func init() {
ioc.RegistryController(&impl{})
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/aviptle/goclean.git
git@gitee.com:aviptle/goclean.git
aviptle
goclean
goclean
36a29baa48bf

搜索帮助