(ch *cmdutil.Helper)
| 22 | ) |
| 23 | |
| 24 | func SubscriptionCmd(ch *cmdutil.Helper) *cobra.Command { |
| 25 | cmd := &cobra.Command{ |
| 26 | Use: "subscription", |
| 27 | Short: "Utilities for tweaking subscription", |
| 28 | } |
| 29 | |
| 30 | cmd.AddCommand(AdvanceSubscriptionTimeCmd(ch)) |
| 31 | |
| 32 | return cmd |
| 33 | } |
| 34 | |
| 35 | func AdvanceSubscriptionTimeCmd(ch *cmdutil.Helper) *cobra.Command { |
| 36 | var toDate string |
no test coverage detected