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

18 lines
368 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
func DiffCommand() *cobra.Command {
return &cobra.Command{
Use: "diff [config]",
Short: "Display the diff between the current config and the SDK default config",
Args: cobra.ExactArgs(2),
RunE: func(cmd *cobra.Command, args []string) error {
// TODO to implement in the next PR
return nil
},
}
}