Skip to content

Commit

Permalink
feat: move config to internal
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim committed Sep 3, 2023
1 parent 7d344f4 commit c7377a9
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/account/account.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"github.com/spf13/cobra"

account_api "github.com/FriendsOfShopware/shopware-cli/account-api"

Check notice on line 6 in cmd/account/account.go

View workflow job for this annotation

GitHub Actions / Qodana for Go

Usage of Snake_Case

Eliminate snake case
"github.com/FriendsOfShopware/shopware-cli/config"
"github.com/FriendsOfShopware/shopware-cli/internal/config"
)

var accountRootCmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion cmd/extension/extension_create.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/manifoldco/promptui"
"github.com/spf13/cobra"

"github.com/FriendsOfShopware/shopware-cli/config"
"github.com/FriendsOfShopware/shopware-cli/internal/config"
)

var extensionCreateCmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/FriendsOfShopware/shopware-cli/cmd/account"
"github.com/FriendsOfShopware/shopware-cli/cmd/extension"
"github.com/FriendsOfShopware/shopware-cli/cmd/project"
"github.com/FriendsOfShopware/shopware-cli/config"
"github.com/FriendsOfShopware/shopware-cli/internal/config"
"github.com/FriendsOfShopware/shopware-cli/logging"
)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c7377a9

Please sign in to comment.