Skip to content

Commit

Permalink
hide rate command whilst in development.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonhadfield committed Jun 29, 2024
1 parent 2d7a2cd commit 08894e7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/rate.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ func newRateCommand() *cobra.Command {
var useTestData bool

cacheCmd := &cobra.Command{
Use: "rate",
Short: "rate ip address",
Use: "rate",
Short: "rate ip address",
Hidden: true,
RunE: func(cmd *cobra.Command, args []string) error {
// using test data doesn't require a host be provided
// but command does so use placeholder
Expand Down

0 comments on commit 08894e7

Please sign in to comment.