uymas
代码仓库介绍
项目介绍
go 语言工具库 go-version: v1.11.1
- source
- bin 命令行解析工具
分支介绍
- master 项目主分支
- develop 开发分支
- nestling 雏形分支,包含实验性的代码
# 分支合并顺序
nestling --> develop -->master安装
# github
$ go get -u github.com/conero/uymas
bin
命令行行语法
$ [command] [<options>]
$ [command] [<options>]
# [<options>] 格式如下
# 1. 配置参数;全称以及简写
--set[=true]
# - 表示单字符; -x; -xy => -x -y ; -xzy => x=zy
-short[=true]
# 2. 二级命令(紧接着 [command])
$ [command] [<sub-command>] [<options>]使用
package main
import (
"fmt"
"github.com/conero/uymas/bin"
)
// 命令 test
type Test struct {
bin.Command
}
// 项目初始化
func (a *Test) Init () {
// 重写方法时必先系统父结构体方法[!!]
a.Command.Init()
// todo ....
}
// 运行,执行内二级命令分发
func (a *Test) Run () {
fmt.Println("ffff.")
}
// 命令 yang
type Yang struct {
bin.Command
}
func main() {
//router := &bin.Router{}
//bin.Register("test", &Test{})
//bin.Register("yang", &Yang{})
//bin.Adapter(router)
bin.RegisterApps(map[string]interface{}{
"test": &Test{},
"yang": &Yang{},
})
bin.Run()
}