diff options
author | Carl Baldwin <carl@ecbaldwin.net> | 2019-11-06 17:30:23 +0000 |
---|---|---|
committer | Carl Baldwin <carl@ecbaldwin.net> | 2019-11-06 17:59:21 +0000 |
commit | 72a0e55287bd2ebffe2a1e6d4a0f24fe304b21ee (patch) | |
tree | d33ff8c929c6be099d44c5c738e9d225852a2dab /api/gobgp.proto | |
parent | a42a1a5f6bf0d0aa8dac26d32907b94b7cdcc6e1 (diff) |
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
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r-- | api/gobgp.proto | 6 |
1 files changed, 3 insertions, 3 deletions
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; |