── storage content ───────────────────────────────────────────────────────────
()
| 261 | // ── storage content ─────────────────────────────────────────────────────────── |
| 262 | |
| 263 | func newStorageContentCmd() *cobra.Command { |
| 264 | cmd := &cobra.Command{ |
| 265 | Use: "content", |
| 266 | Short: "Manage storage content", |
| 267 | } |
| 268 | |
| 269 | cmd.AddCommand(newStorageContentListCmd()) |
| 270 | cmd.AddCommand(newStorageContentDeleteCmd()) |
| 271 | |
| 272 | return cmd |
| 273 | } |
| 274 | |
| 275 | func newStorageContentListCmd() *cobra.Command { |
| 276 | cmd := &cobra.Command{ |
no test coverage detected