constellation/cli/cmd/config.go

19 lines
350 B
Go
Raw Normal View History

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