diff --git a/examples/health-monitor/cmd/cmd.go b/examples/health-monitor/cmd/cmd.go index 404484cc..7a63e2cb 100644 --- a/examples/health-monitor/cmd/cmd.go +++ b/examples/health-monitor/cmd/cmd.go @@ -19,6 +19,12 @@ func GetCommands() []*plugin.Command { DefaultValue: "false", Type: plugin.FlagTypeBool, }, + { + Name: "path", + Usage: "path of the app", + DefaultValue: ".", + Type: plugin.FlagTypeString, + }, { Name: "refresh-duration", Shorthand: "r", diff --git a/examples/health-monitor/go.mod b/examples/health-monitor/go.mod index a26d3a54..a3af7f3e 100644 --- a/examples/health-monitor/go.mod +++ b/examples/health-monitor/go.mod @@ -2,8 +2,6 @@ module health-monitor go 1.21.1 -toolchain go1.21.6 - require ( github.com/cometbft/cometbft v0.38.5 github.com/cosmos/cosmos-sdk v0.50.3