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
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"
)