From 72a0e55287bd2ebffe2a1e6d4a0f24fe304b21ee Mon Sep 17 00:00:00 2001 From: Carl Baldwin Date: Wed, 6 Nov 2019 17:30:23 +0000 Subject: Use correct import paths for protobuf packages The packages `any`, `empty`, and `timestamp` ship with protoc so there is no need to pull them out of the go package. This simplifies the generation script and also corrects the import paths for the standard protobuf types. Fixes: #2095 --- api/gobgp.proto | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'api/gobgp.proto') diff --git a/api/gobgp.proto b/api/gobgp.proto index 2ec11958..3ed531a9 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -21,9 +21,9 @@ syntax = "proto3"; -import "any/any.proto"; -import "empty/empty.proto"; -import "timestamp/timestamp.proto"; +import "google/protobuf/any.proto"; +import "google/protobuf/empty.proto"; +import "google/protobuf/timestamp.proto"; package gobgpapi; -- cgit v1.2.3