()
| 1193 | } |
| 1194 | |
| 1195 | func newMemoryAdhocListCommand() *cobra.Command { |
| 1196 | var flags memorySelectorFlags |
| 1197 | cmd := newUnsupportedMemoryCommand( |
| 1198 | memoryListKey, |
| 1199 | "memory.unsupported: adhoc list is not registered in Slice 1 API", |
| 1200 | cobra.NoArgs, |
| 1201 | ) |
| 1202 | addMemorySelectorFlags(cmd, &flags) |
| 1203 | return cmd |
| 1204 | } |
| 1205 | |
| 1206 | func newMemoryDailyUnsupportedSelectorCommand( |
| 1207 | use string, |
no test coverage detected