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/attribute.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/attribute.proto')
-rw-r--r-- | api/attribute.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/attribute.proto b/api/attribute.proto index 4cf844f3..7bf94528 100644 --- a/api/attribute.proto +++ b/api/attribute.proto @@ -21,7 +21,7 @@ syntax = "proto3"; -import "any/any.proto"; +import "google/protobuf/any.proto"; import "gobgp.proto"; package gobgpapi; |