1
0
Fork 0

chore: go module

This commit is contained in:
Fernandez Ludovic 2019-08-03 03:58:23 +02:00 committed by Traefiker Bot
parent f327b7b499
commit 4c5e7a238d
276 changed files with 1555 additions and 738 deletions

View file

@ -2,7 +2,7 @@
package flag
import (
"github.com/containous/traefik/pkg/config/parser"
"github.com/containous/traefik/v2/pkg/config/parser"
)
// Decode decodes the given flag arguments into the given element.

View file

@ -4,9 +4,9 @@ import (
"testing"
"time"
"github.com/containous/traefik/pkg/config/generator"
"github.com/containous/traefik/pkg/config/parser"
"github.com/containous/traefik/pkg/types"
"github.com/containous/traefik/v2/pkg/config/generator"
"github.com/containous/traefik/v2/pkg/config/parser"
"github.com/containous/traefik/v2/pkg/types"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

View file

@ -5,7 +5,7 @@ import (
"reflect"
"strings"
"github.com/containous/traefik/pkg/config/parser"
"github.com/containous/traefik/v2/pkg/config/parser"
)
// Parse parses the command-line flag arguments into a map,

View file

@ -4,7 +4,7 @@ import (
"reflect"
"strings"
"github.com/containous/traefik/pkg/config/parser"
"github.com/containous/traefik/v2/pkg/config/parser"
)
func getFlagTypes(element interface{}) map[string]reflect.Kind {

View file

@ -4,7 +4,7 @@ import (
"reflect"
"testing"
"github.com/containous/traefik/pkg/config/parser"
"github.com/containous/traefik/v2/pkg/config/parser"
"github.com/stretchr/testify/assert"
)