2022-05-12 15:14:52 +02:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2022-06-08 08:14:28 +02:00
|
|
|
func NewConfigCmd() *cobra.Command {
|
2022-05-12 15:14:52 +02:00
|
|
|
cmd := &cobra.Command{
|
|
|
|
Use: "config",
|
2022-05-18 19:01:11 +02:00
|
|
|
Short: "Work with the Constellation configuration file",
|
2022-05-24 11:56:40 +02:00
|
|
|
Long: "Generate a configuration file for Constellation.",
|
2022-05-12 15:14:52 +02:00
|
|
|
Args: cobra.ExactArgs(0),
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd.AddCommand(newConfigGenerateCmd())
|
2022-08-01 09:37:05 +02:00
|
|
|
cmd.AddCommand(newConfigFetchMeasurementsCmd())
|
2022-05-12 15:14:52 +02:00
|
|
|
|
|
|
|
return cmd
|
|
|
|
}
|