mirror of
https://github.com/rclone/rclone.git
synced 2025-08-18 09:30:03 +02:00
Switch to using the dep tool and update all the dependencies
This commit is contained in:
21
vendor/google.golang.org/grpc/reflection/grpc_testing/test.proto
generated
vendored
Normal file
21
vendor/google.golang.org/grpc/reflection/grpc_testing/test.proto
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package grpc.testing;
|
||||
|
||||
message SearchResponse {
|
||||
message Result {
|
||||
string url = 1;
|
||||
string title = 2;
|
||||
repeated string snippets = 3;
|
||||
}
|
||||
repeated Result results = 1;
|
||||
}
|
||||
|
||||
message SearchRequest {
|
||||
string query = 1;
|
||||
}
|
||||
|
||||
service SearchService {
|
||||
rpc Search(SearchRequest) returns (SearchResponse);
|
||||
rpc StreamingSearch(stream SearchRequest) returns (stream SearchResponse);
|
||||
}
|
Reference in New Issue
Block a user