Skip to content

Commit

Permalink
cohre: fix gi imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ravisuhag committed Dec 11, 2024
1 parent 70ed7d1 commit 73d6ee2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
3 changes: 2 additions & 1 deletion cli/cmdx/cmdx.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package cmdx

import (
"github.com/spf13/cobra"
"strings"

"github.com/spf13/cobra"
)

// Commander manages and configures features for a CLI tool.
Expand Down
7 changes: 4 additions & 3 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@ import (
"encoding/json"
"errors"
"fmt"
"os"
"reflect"
"strings"

"github.com/go-playground/validator"
"github.com/jeremywohl/flatten"
"github.com/mcuadros/go-defaults"
"github.com/mitchellh/mapstructure"
"github.com/spf13/pflag"
"github.com/spf13/viper"
"gopkg.in/yaml.v3"
"os"
"reflect"
"strings"
)

// Loader is responsible for managing configuration
Expand Down
7 changes: 4 additions & 3 deletions config/config_test.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package config_test

import (
"github.com/mcuadros/go-defaults"
"github.com/raystack/salt/config"
"github.com/spf13/pflag"
"os"
"strings"
"testing"

"github.com/mcuadros/go-defaults"
"github.com/raystack/salt/config"
"github.com/spf13/pflag"
)

type Config struct {
Expand Down

0 comments on commit 73d6ee2

Please sign in to comment.