debug.go 181 B

123456789101112
  1. package debug
  2. import "github.com/spf13/cobra"
  3. var DebugCmd = &cobra.Command{
  4. Use: "debug",
  5. Short: "Debugging utilities",
  6. }
  7. func init() {
  8. DebugCmd.AddCommand(decodeVaaCmd)
  9. }