(deps commandDeps)
| 669 | } |
| 670 | |
| 671 | func newMemoryDecisionsCommand(deps commandDeps) *cobra.Command { |
| 672 | cmd := &cobra.Command{ |
| 673 | Use: memoryDecisionsKey, |
| 674 | Short: "Inspect and revert Memory v2 controller decisions", |
| 675 | } |
| 676 | cmd.AddCommand(newMemoryDecisionsListCommand(deps)) |
| 677 | cmd.AddCommand(newMemoryDecisionsShowCommand(deps)) |
| 678 | cmd.AddCommand(newMemoryDecisionsRevertCommand(deps)) |
| 679 | return cmd |
| 680 | } |
| 681 | |
| 682 | func newMemoryDecisionsListCommand(deps commandDeps) *cobra.Command { |
| 683 | var flags memorySelectorFlags |
no test coverage detected