1010// the License.
1111
1212syntax = "proto3" ;
13- package github.com .bblfsh.sdk.protocol ;
13+ package gopkg.in .bblfsh.sdk.v0 .protocol ;
1414
1515import "github.com/gogo/protobuf/gogoproto/gogo.proto" ;
16- import "github.com /bblfsh/sdk/uast/generated.proto" ;
16+ import "gopkg.in /bblfsh/sdk.v0 /uast/generated.proto" ;
1717
1818option (gogoproto.protosizer_all ) = true ;
1919option (gogoproto.sizer_all ) = false ;
@@ -26,16 +26,16 @@ message ParseRequest {
2626 string filename = 1 ;
2727 string language = 2 ;
2828 string content = 3 ;
29- github.com .bblfsh.sdk.protocol.Encoding encoding = 4 ;
29+ gopkg.in .bblfsh.sdk.v0 .protocol.Encoding encoding = 4 ;
3030}
3131
3232// ParseResponse is the reply to ParseRequest.
3333message ParseResponse {
3434 option (gogoproto.goproto_getters ) = false ;
3535 option (gogoproto.typedecl ) = false ;
36- github.com .bblfsh.sdk.protocol.Status status = 1 ;
36+ gopkg.in .bblfsh.sdk.v0 .protocol.Status status = 1 ;
3737 repeated string errors = 2 ;
38- github.com .bblfsh.sdk.uast.Node uast = 3 [(gogoproto.customname ) = "UAST" ];
38+ gopkg.in .bblfsh.sdk.v0 .uast.Node uast = 3 [(gogoproto.customname ) = "UAST" ];
3939}
4040
4141// Encoding is the encoding used for the content string. Currently only
@@ -66,6 +66,6 @@ enum Status {
6666
6767service ProtocolService {
6868 // Parse uses DefaultParser to process the given parsing request to get the UAST.
69- rpc Parse (github.com .bblfsh.sdk.protocol.ParseRequest ) returns (github.com .bblfsh.sdk.protocol.ParseResponse );
69+ rpc Parse (gopkg.in .bblfsh.sdk.v0. protocol.ParseRequest ) returns (gopkg.in .bblfsh.sdk.v0 .protocol.ParseResponse );
7070}
7171
0 commit comments