Skip to content

Commit

Permalink
connectionpb: remove unnecessary import
Browse files Browse the repository at this point in the history
Release note: None
  • Loading branch information
rickystewart committed Aug 3, 2022
1 parent e52f732 commit 432e849
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
10 changes: 2 additions & 8 deletions pkg/cloud/externalconn/connectionpb/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@ proto_library(
srcs = ["connection.proto"],
strip_import_prefix = "/pkg",
visibility = ["//visibility:public"],
deps = [
"//pkg/cloud/cloudpb:cloudpb_proto",
"@com_github_gogo_protobuf//gogoproto:gogo_proto",
],
deps = ["@com_github_gogo_protobuf//gogoproto:gogo_proto"],
)

go_proto_library(
Expand All @@ -20,10 +17,7 @@ go_proto_library(
importpath = "github.com/cockroachdb/cockroach/pkg/cloud/externalconn/connectionpb",
proto = ":connectionpb_proto",
visibility = ["//visibility:public"],
deps = [
"//pkg/cloud/cloudpb",
"@com_github_gogo_protobuf//gogoproto",
],
deps = ["@com_github_gogo_protobuf//gogoproto"],
)

go_library(
Expand Down
1 change: 0 additions & 1 deletion pkg/cloud/externalconn/connectionpb/connection.proto
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ package cockroach.cloud.externalconn.connectionpb;
option go_package = "connectionpb";

import "gogoproto/gogo.proto";
import "cloud/cloudpb/external_storage.proto";

// ConnectionType is the type of the External Connection object.
enum ConnectionType {
Expand Down

0 comments on commit 432e849

Please sign in to comment.