X Tutup
Skip to content

Commit d986a18

Browse files
committed
api: cleanup protobuf imports
There were a few files printing warnings during the build due to erroneous imports. These imports have now been removed. Signed-off-by: Stephen J Day <stephen.day@docker.com>
1 parent bb39d1d commit d986a18

File tree

7 files changed

+105
-116
lines changed

7 files changed

+105
-116
lines changed

Protobuild.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins = ["grpc", "fieldpath"]
77
[includes]
88
# Include paths that will be added before all others. Typically, you want to
99
# treat the root of the project as an include, but this may not be necessary.
10-
before = ["."]
10+
# before = ["."]
1111

1212
# Paths that should be treated as include roots in relation to the vendor
1313
# directory. These will be calculated with the vendor directory nearest the

api/services/containers/v1/containers.pb.go

Lines changed: 48 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/services/containers/v1/containers.proto

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import "google/protobuf/any.proto";
77
import "google/protobuf/empty.proto";
88
import "google/protobuf/field_mask.proto";
99
import "google/protobuf/timestamp.proto";
10-
import "github.com/containerd/containerd/api/types/descriptor.proto";
1110

1211
option go_package = "github.com/containerd/containerd/api/services/containers/v1;containers";
1312

api/services/diff/v1/diff.pb.go

Lines changed: 27 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/services/diff/v1/diff.proto

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ syntax = "proto3";
33
package containerd.services.diff.v1;
44

55
import "gogoproto/gogo.proto";
6-
import "google/protobuf/empty.proto";
7-
import "google/protobuf/timestamp.proto";
86
import "github.com/containerd/containerd/api/types/mount.proto";
97
import "github.com/containerd/containerd/api/types/descriptor.proto";
108

0 commit comments

Comments
 (0)
X Tutup