Skip to content

Commit

Permalink
chore: fix the import orders
Browse files Browse the repository at this point in the history
Signed-off-by: Kensei Nakada <handbomusic@gmail.com>
  • Loading branch information
sanposhiho committed Aug 3, 2024
1 parent 938ac66 commit e8c6ebf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions examples/extension-server/cmd/extension-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import (
"os/signal"
"syscall"

pb "github.com/envoyproxy/gateway/proto/extension"
"github.com/exampleorg/envoygateway-extension/internal/extensionserver"
"github.com/urfave/cli/v2"
"google.golang.org/grpc"

"github.com/exampleorg/envoygateway-extension/internal/extensionserver"
pb "github.com/envoyproxy/gateway/proto/extension"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions examples/extension-server/internal/extensionserver/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ import (
"fmt"
"log/slog"

pb "github.com/envoyproxy/gateway/proto/extension"
corev3 "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
listenerv3 "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
bav3 "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/basic_auth/v3"
hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
"github.com/envoyproxy/go-control-plane/pkg/wellknown"
"github.com/exampleorg/envoygateway-extension/api/v1alpha1"
"google.golang.org/protobuf/types/known/anypb"

"github.com/exampleorg/envoygateway-extension/api/v1alpha1"
pb "github.com/envoyproxy/gateway/proto/extension"
)

type Server struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/infrastructure/kubernetes/proxy_daemonset_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import (
"context"
"testing"

resource2 "github.com/envoyproxy/gateway/internal/infrastructure/kubernetes/resource"
"github.com/stretchr/testify/require"
appsv1 "k8s.io/api/apps/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand All @@ -22,6 +21,7 @@ import (
"github.com/envoyproxy/gateway/internal/envoygateway/config"
"github.com/envoyproxy/gateway/internal/gatewayapi"
"github.com/envoyproxy/gateway/internal/infrastructure/kubernetes/proxy"
resource2 "github.com/envoyproxy/gateway/internal/infrastructure/kubernetes/resource"
"github.com/envoyproxy/gateway/internal/ir"
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import (
"context"
"testing"

resource2 "github.com/envoyproxy/gateway/internal/infrastructure/kubernetes/resource"
"github.com/stretchr/testify/require"
appsv1 "k8s.io/api/apps/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
Expand All @@ -22,6 +21,7 @@ import (
"github.com/envoyproxy/gateway/internal/envoygateway/config"
"github.com/envoyproxy/gateway/internal/gatewayapi"
"github.com/envoyproxy/gateway/internal/infrastructure/kubernetes/proxy"
resource2 "github.com/envoyproxy/gateway/internal/infrastructure/kubernetes/resource"
"github.com/envoyproxy/gateway/internal/ir"
)

Expand Down

0 comments on commit e8c6ebf

Please sign in to comment.