(deps commandDeps)
| 804 | } |
| 805 | |
| 806 | func newMemoryDreamCommand(deps commandDeps) *cobra.Command { |
| 807 | cmd := &cobra.Command{ |
| 808 | Use: memoryDreamKey, |
| 809 | Short: "Operate Memory v2 dreaming runs", |
| 810 | } |
| 811 | cmd.AddCommand(newMemoryDreamShowCommand(deps)) |
| 812 | cmd.AddCommand(newMemoryDreamRetryCommand(deps)) |
| 813 | cmd.AddCommand(newMemoryDreamTriggerCommand(deps)) |
| 814 | cmd.AddCommand(newMemoryDreamStatusCommand(deps)) |
| 815 | return cmd |
| 816 | } |
| 817 | |
| 818 | func newMemoryDreamShowCommand(deps commandDeps) *cobra.Command { |
| 819 | return &cobra.Command{ |
no test coverage detected