加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ctrls.go 646 Bytes
一键复制 编辑 原始数据 按行查看 历史
老马 提交于 2020-05-10 14:57 . add etcd
package xjutils
import (
"github.com/gin-gonic/gin"
)
func Health(c *gin.Context){
c.String(200,"ok")
}
func Refresh(c *gin.Context){
//models.Loadconf()
local_url := Config.Section("local").Key("url").String()
local_port := Config.Section("local").Key("port").String()
register_url := Config.Section("register").Key("url").String()
register_port := Config.Section("register").Key("port").String()
local_appname := Config.Section("local").Key("appname").String()
registerurl := "http://"+register_url + ":" + register_port +"/put/" + local_appname+ "/"+local_url+":"+local_port
HttpGetStr(registerurl)
c.String(200,"refresh ok.")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化