Skip to content

Commit bb81dac

Browse files
committed
fix(cdn) more merge errors, and single char renames
1 parent 2f93697 commit bb81dac

File tree

10 files changed

+142
-139
lines changed

10 files changed

+142
-139
lines changed

internal/cmd/beta/cdn/cdn.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ package cdn
33
import (
44
"github.com/spf13/cobra"
55
"github.com/stackitcloud/stackit-cli/internal/cmd/beta/cdn/distribution"
6-
"github.com/stackitcloud/stackit-cli/internal/cmd/params"
76
"github.com/stackitcloud/stackit-cli/internal/pkg/args"
7+
"github.com/stackitcloud/stackit-cli/internal/pkg/types"
88
"github.com/stackitcloud/stackit-cli/internal/pkg/utils"
99
)
1010

11-
func NewCmd(params *params.CmdParams) *cobra.Command {
11+
func NewCmd(params *types.CmdParams) *cobra.Command {
1212
cmd := &cobra.Command{
1313
Use: "cdn",
1414
Short: "Manage CDN resources",
@@ -20,6 +20,6 @@ func NewCmd(params *params.CmdParams) *cobra.Command {
2020
return cmd
2121
}
2222

23-
func addSubcommands(cmd *cobra.Command, params *params.CmdParams) {
23+
func addSubcommands(cmd *cobra.Command, params *types.CmdParams) {
2424
cmd.AddCommand(distribution.NewCommand(params))
2525
}

0 commit comments

Comments
 (0)