Fix import paths in altsrc

Uses gopkg.in as the import path for the `altsrc` package.

Fixes: #473
This commit is contained in:
Jake Champlin
2016-08-27 19:09:14 -04:00
parent 05fe449c81
commit c75c862386
9 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"strconv"
"strings"
"github.com/urfave/cli"
"gopkg.in/urfave/cli.v1"
)
// FlagInputSourceExtension is an extension interface of cli.Flag that
+1 -1
View File
@@ -3,7 +3,7 @@ package altsrc
import (
"flag"
"github.com/urfave/cli"
"gopkg.in/urfave/cli.v1"
)
// WARNING: This file is generated!
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"testing"
"time"
"github.com/urfave/cli"
"gopkg.in/urfave/cli.v1"
)
type testApplyInputSource struct {
+1 -1
View File
@@ -3,7 +3,7 @@ package altsrc
import (
"time"
"github.com/urfave/cli"
"gopkg.in/urfave/cli.v1"
)
// InputSourceContext is an interface used to allow
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"strings"
"time"
"github.com/urfave/cli"
"gopkg.in/urfave/cli.v1"
)
// MapInputSource implements InputSourceContext to return
+1 -1
View File
@@ -11,7 +11,7 @@ import (
"os"
"testing"
"github.com/urfave/cli"
"gopkg.in/urfave/cli.v1"
)
func TestCommandTomFileTest(t *testing.T) {
+1 -1
View File
@@ -10,7 +10,7 @@ import (
"reflect"
"github.com/BurntSushi/toml"
"github.com/urfave/cli"
"gopkg.in/urfave/cli.v1"
)
type tomlMap struct {
+1 -1
View File
@@ -11,7 +11,7 @@ import (
"os"
"testing"
"github.com/urfave/cli"
"gopkg.in/urfave/cli.v1"
)
func TestCommandYamlFileTest(t *testing.T) {
+1 -1
View File
@@ -12,7 +12,7 @@ import (
"net/url"
"os"
"github.com/urfave/cli"
"gopkg.in/urfave/cli.v1"
"gopkg.in/yaml.v2"
)