mirror of
https://github.com/spf13/cobra
synced 2024-11-16 18:57:08 +00:00
add CommandTemplate
This commit is contained in:
parent
50665e9993
commit
3741457400
2 changed files with 46 additions and 0 deletions
|
@ -19,6 +19,8 @@ type Project struct {
|
||||||
Legal License
|
Legal License
|
||||||
Viper bool
|
Viper bool
|
||||||
AppName string
|
AppName string
|
||||||
|
CmdName string
|
||||||
|
CmdParent string
|
||||||
|
|
||||||
// v1
|
// v1
|
||||||
absPath string
|
absPath string
|
||||||
|
|
|
@ -107,3 +107,47 @@ func initConfig() {
|
||||||
{{ end }}
|
{{ end }}
|
||||||
`)
|
`)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func AddCommandTemplate() []byte {
|
||||||
|
return []byte(`/*
|
||||||
|
{{ .Copyright }}
|
||||||
|
{{ if .Legal.Header }}{{ .Legal.Header }}{{ end }}
|
||||||
|
*/
|
||||||
|
package cmd
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/spf13/cobra"
|
||||||
|
)
|
||||||
|
|
||||||
|
// {{ .CmdName }}Cmd represents the {{ .CmdName }} command
|
||||||
|
var {{ .CmdName }}Cmd = &cobra.Command{
|
||||||
|
Use: "{{ .CmdName }}",
|
||||||
|
Short: "A brief description of your command",
|
||||||
|
Long: ` + "`" + `A longer description that spans multiple lines and likely contains examples
|
||||||
|
and usage of using your command. For example:
|
||||||
|
|
||||||
|
Cobra is a CLI library for Go that empowers applications.
|
||||||
|
This application is a tool to generate the needed files
|
||||||
|
to quickly create a Cobra application.` + "`" + `,
|
||||||
|
Run: func(cmd *cobra.Command, args []string) {
|
||||||
|
fmt.Println("{{ .CmdName }} called")
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
{{ .CmdParent }}.AddCommand({{ .CmdName }}Cmd)
|
||||||
|
|
||||||
|
// Here you will define your flags and configuration settings.
|
||||||
|
|
||||||
|
// Cobra supports Persistent Flags which will work for this command
|
||||||
|
// and all subcommands, e.g.:
|
||||||
|
// {{ .CmdName }}Cmd.PersistentFlags().String("foo", "", "A help for foo")
|
||||||
|
|
||||||
|
// Cobra supports local flags which will only run when this command
|
||||||
|
// is called directly, e.g.:
|
||||||
|
// {{ .CmdName }}Cmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
||||||
|
}
|
||||||
|
`)
|
||||||
|
}
|
Loading…
Reference in a new issue