Documentation
¶
Overview ¶
Package create handle functions to create projects
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CreateCmd = &cobra.Command{ Use: "create", Short: "Create Projects", Run: func(cmd *cobra.Command, args []string) { if len(args) <= 0 { fmt.Println("You need to provide at least a project name.") } else if len(args) >= 2 { fmt.Println("Too many names defined. For aditional configuration use flags.") } else { for _, element := range args { fmt.Println(element) } } }, }
CreateCmd command to create multiple projects.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.