constellation/cli/cmd/config.go

19 lines
346 B
Go
Raw Normal View History

package cmd
import (
"github.com/spf13/cobra"
)
func newConfigCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "config",
Short: "Work with Constellation configuration file",
Long: "Generate & manipulate configuration file for Constellation.",
Args: cobra.ExactArgs(0),
}
cmd.AddCommand(newConfigGenerateCmd())
return cmd
}