── storage ──────────────────────────────────────────────────────────────────
()
| 53 | // ── storage ────────────────────────────────────────────────────────────────── |
| 54 | |
| 55 | func newStorageCmd() *cobra.Command { |
| 56 | cmd := &cobra.Command{ |
| 57 | Use: "storage", |
| 58 | Short: "Manage Proxmox storage and content", |
| 59 | } |
| 60 | |
| 61 | cmd.AddCommand(newStorageListCmd()) |
| 62 | cmd.AddCommand(newStorageShowCmd()) |
| 63 | cmd.AddCommand(newStorageContentCmd()) |
| 64 | cmd.AddCommand(newStorageDownloadCmd()) |
| 65 | cmd.AddCommand(newStorageRestoreCmd()) |
| 66 | |
| 67 | return cmd |
| 68 | } |
| 69 | |
| 70 | // ── storage list ───────────────────────────────────────────────────────────── |
| 71 |
no test coverage detected