cosmos-sdk/tools/confix/cmd/config.go
2023-01-10 10:28:41 +00:00

24 lines
433 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
// ConfigComamnd contains all the confix commands
// These command can be used to interactively update an application config value.
func ConfigCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "config",
Short: "Utilities for managing application configuration",
}
cmd.AddCommand(
MigrateCommand(),
DiffCommand(),
GetCommand(),
SetCommand(),
)
return cmd
}