global command
This commit is contained in:
16
pkg/cmd/init/default/default.go
Normal file
16
pkg/cmd/init/default/default.go
Normal file
@ -0,0 +1,16 @@
|
||||
package initdefault
|
||||
|
||||
import "github.com/spf13/cobra"
|
||||
|
||||
func Command() (c *cobra.Command) {
|
||||
c = &cobra.Command{
|
||||
Use: "default",
|
||||
Short: "default stage",
|
||||
Run: run,
|
||||
}
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
func run(c *cobra.Command, args []string) {
|
||||
}
|
Reference in New Issue
Block a user