1 Star 0 Fork 0

water/goweb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
hello_cli_init.go 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
leijmdas 提交于 2024-09-20 12:49 . add
package gorpcclient
import (
"gitee.com/leijmdas/gobase/goconfig/common/base/baseiface"
"gitee.com/leijmdas/gobase/goconfig/common/basedi"
"github.com/sirupsen/logrus"
)
/*
@Title 文件名称: hello_cli_init.go
@Desp 描述: 自动注册注入
@Company 公司: kunlong@sz.com
@Author 作者: LEIJMDAS@163.COM 时间: 2024-08-08 20:16:53
@Update 作者: LEIJMDAS@163.COM 时间: 2024-08-08 20:16:53
*/
const singleNameHelloCli = "*hello.HelloCli-da41b470-a278-4af1-88b8-0b24a1b982d8"
// init register load
func init() {
registerBeanHelloCli()
}
// register HelloCli
func registerBeanHelloCli() {
basedi.RegisterLoadBean(singleNameHelloCli, LoadHelloCli)
}
// FindBeanHelloCli
func FindBeanHelloCli() *HelloCli {
if bean, ok := basedi.FindBeanOk(singleNameHelloCli); ok {
return bean.(*HelloCli)
}
logrus.Error("not find bean!")
return nil
}
func LoadHelloCli() baseiface.ISingleton {
var inst = NewHelloCli()
InjectHelloCli(inst)
return inst
}
func InjectHelloCli(s *HelloCli) {
//logrus.Info("inject")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/leijmdas/goweb.git
git@gitee.com:leijmdas/goweb.git
leijmdas
goweb
goweb
v1.0.1-dev-02

搜索帮助