1 Star 0 Fork 0

vick/kinfu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
my_mysql.go 326 Bytes
一键复制 编辑 原始数据 按行查看 历史
package plugs
import (
"fmt"
"gitee.com/wu-jin-feng/kinfu/fgin"
)
func init() {
// 将组件注册进入
fgin.RegisteGrpcPlug("my_mysql", &MyMysql{})
}
type MyMysql struct {
Host string `yaml:"host" json:"host"`
Port int `yaml:"port" json:"port"`
}
func (c *MyMysql) Start() {
fmt.Println("Start MyMysql", c)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/wu-jin-feng/kinfu.git
git@gitee.com:wu-jin-feng/kinfu.git
wu-jin-feng
kinfu
kinfu
1da0fa2f65f8

搜索帮助