chore: change TCP middleware package

This commit is contained in:
Ludovic Fernandez 2022-10-26 17:42:07 +02:00 committed by GitHub
parent 1b9873cae9
commit 7a6bfd3336
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 6 additions and 6 deletions

View file

@ -1,4 +1,4 @@
package tcpinflightconn
package inflightconn
import (
"context"

View file

@ -1,4 +1,4 @@
package tcpinflightconn
package inflightconn
import (
"context"

View file

@ -1,4 +1,4 @@
package tcpipallowlist
package ipallowlist
import (
"context"

View file

@ -1,4 +1,4 @@
package tcpipallowlist
package ipallowlist
import (
"context"

View file

@ -6,8 +6,8 @@ import (
"strings"
"github.com/traefik/traefik/v2/pkg/config/runtime"
inflightconn "github.com/traefik/traefik/v2/pkg/middlewares/tcp/inflightconn"
ipallowlist "github.com/traefik/traefik/v2/pkg/middlewares/tcp/ipallowlist"
"github.com/traefik/traefik/v2/pkg/middlewares/tcp/inflightconn"
"github.com/traefik/traefik/v2/pkg/middlewares/tcp/ipallowlist"
"github.com/traefik/traefik/v2/pkg/server/provider"
"github.com/traefik/traefik/v2/pkg/tcp"
)