We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24be571 commit 1b7bdcaCopy full SHA for 1b7bdca
internal/cmd/volume/volume.go
@@ -2,6 +2,7 @@ package volume
2
3
import (
4
"github.com/stackitcloud/stackit-cli/internal/cmd/params"
5
+ "github.com/stackitcloud/stackit-cli/internal/cmd/volume/backup"
6
"github.com/stackitcloud/stackit-cli/internal/cmd/volume/create"
7
"github.com/stackitcloud/stackit-cli/internal/cmd/volume/delete"
8
"github.com/stackitcloud/stackit-cli/internal/cmd/volume/describe"
@@ -37,4 +38,5 @@ func addSubcommands(cmd *cobra.Command, params *params.CmdParams) {
37
38
cmd.AddCommand(resize.NewCmd(params))
39
cmd.AddCommand(performanceclass.NewCmd(params))
40
cmd.AddCommand(snapshot.NewCmd(params))
41
+ cmd.AddCommand(backup.NewCmd(params))
42
}
0 commit comments