MCPcopy Create free account
hub / github.com/devnullvoid/pvetui / newStorageCmd

Function newStorageCmd

internal/cli/storage.go:55–68  ·  view source on GitHub ↗

── storage ──────────────────────────────────────────────────────────────────

()

Source from the content-addressed store, hash-verified

53// ── storage ──────────────────────────────────────────────────────────────────
54
55func 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

Callers 1

initFunction · 0.85

Calls 5

newStorageListCmdFunction · 0.85
newStorageShowCmdFunction · 0.85
newStorageContentCmdFunction · 0.85
newStorageDownloadCmdFunction · 0.85
newStorageRestoreCmdFunction · 0.85

Tested by

no test coverage detected