2 Star 0 Fork 0

小蚂蚁/gurl

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gurl.go 643 Bytes
一键复制 编辑 原始数据 按行查看 历史
guonaihong 提交于 2019-10-27 15:34 . done #9
package main
import (
"github.com/guonaihong/flag"
"github.com/guonaihong/gurl/ghttp"
"github.com/guonaihong/gurl/pipe"
"github.com/guonaihong/gurl/ws"
"os"
)
func main() {
parent := flag.NewParentCommand(os.Args[0])
parent.SubCommand("http", "Use the http subcommand", func() {
pipe.Main(os.Args[0], parent.Args(), ghttp.Main)
})
parent.SubCommand("ws, websocket", "Use the websocket subcommand", func() {
pipe.Main(os.Args[0], parent.Args(), ws.Main)
})
/*
parent.SubCommand("tcp, udp", "Use the tcp or udp subcommand", func() {
pipe.Main(os.Args[0], parent.Args(), conn.Main)
})
*/
parent.Parse(os.Args[1:])
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/guonaihong/gurl.git
git@gitee.com:guonaihong/gurl.git
guonaihong
gurl
gurl
master

搜索帮助