3 Star 13 Fork 11

Ulric Qin/dinp-agent

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.go 360 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ulric Qin 提交于 2015-02-08 22:56 . init github version
package main
import (
"flag"
"fmt"
"github.com/dinp/agent/cron"
"github.com/dinp/agent/g"
"os"
)
func main() {
cfg := flag.String("c", "cfg.json", "configuration file")
version := flag.Bool("v", false, "show version")
flag.Parse()
if *version {
fmt.Println(g.VERSION)
os.Exit(0)
}
g.ParseConfig(*cfg)
g.InitRpcClient()
cron.Heartbeat()
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/cnperl/dinp-agent.git
[email protected]:cnperl/dinp-agent.git
cnperl
dinp-agent
dinp-agent
master

搜索帮助