diff --git a/altsrc/flag_generated.go b/altsrc/flag_generated.go index 29572a6..c9ecea8 100644 --- a/altsrc/flag_generated.go +++ b/altsrc/flag_generated.go @@ -4,6 +4,7 @@ package altsrc import ( "flag" + "github.com/urfave/cli/v2" ) diff --git a/altsrc/flag_test.go b/altsrc/flag_test.go index 80d20ee..34c689e 100644 --- a/altsrc/flag_test.go +++ b/altsrc/flag_test.go @@ -3,12 +3,13 @@ package altsrc import ( "flag" "fmt" - "github.com/urfave/cli/v2" "os" "runtime" "strings" "testing" "time" + + "github.com/urfave/cli/v2" ) type testApplyInputSource struct { diff --git a/altsrc/input_source_context.go b/altsrc/input_source_context.go index 5f60574..a639d8b 100644 --- a/altsrc/input_source_context.go +++ b/altsrc/input_source_context.go @@ -1,8 +1,9 @@ package altsrc import ( - "github.com/urfave/cli/v2" "time" + + "github.com/urfave/cli/v2" ) // InputSourceContext is an interface used to allow diff --git a/altsrc/json_command_test.go b/altsrc/json_command_test.go index bd8e6cf..bd0022b 100644 --- a/altsrc/json_command_test.go +++ b/altsrc/json_command_test.go @@ -2,10 +2,11 @@ package altsrc import ( "flag" - "github.com/urfave/cli/v2" "io/ioutil" "os" "testing" + + "github.com/urfave/cli/v2" ) const ( diff --git a/altsrc/json_source_context.go b/altsrc/json_source_context.go index 31c46cd..d52957f 100644 --- a/altsrc/json_source_context.go +++ b/altsrc/json_source_context.go @@ -3,11 +3,12 @@ package altsrc import ( "encoding/json" "fmt" - "github.com/urfave/cli/v2" "io" "io/ioutil" "strings" "time" + + "github.com/urfave/cli/v2" ) // NewJSONSourceFromFlagFunc returns a func that takes a cli.Context diff --git a/altsrc/map_input_source.go b/altsrc/map_input_source.go index 66bd6e8..661b785 100644 --- a/altsrc/map_input_source.go +++ b/altsrc/map_input_source.go @@ -2,10 +2,11 @@ package altsrc import ( "fmt" - "github.com/urfave/cli/v2" "reflect" "strings" "time" + + "github.com/urfave/cli/v2" ) // MapInputSource implements InputSourceContext to return diff --git a/altsrc/toml_command_test.go b/altsrc/toml_command_test.go index 0ae06cf..b9c7982 100644 --- a/altsrc/toml_command_test.go +++ b/altsrc/toml_command_test.go @@ -2,10 +2,11 @@ package altsrc import ( "flag" - "github.com/urfave/cli/v2" "io/ioutil" "os" "testing" + + "github.com/urfave/cli/v2" ) func TestCommandTomFileTest(t *testing.T) { diff --git a/altsrc/yaml_command_test.go b/altsrc/yaml_command_test.go index 4303e9a..298e4d7 100644 --- a/altsrc/yaml_command_test.go +++ b/altsrc/yaml_command_test.go @@ -2,10 +2,11 @@ package altsrc import ( "flag" - "github.com/urfave/cli/v2" "io/ioutil" "os" "testing" + + "github.com/urfave/cli/v2" ) func TestCommandYamlFileTest(t *testing.T) {