aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/grpc/grpc.proto
blob: 631006bad58969b4c371e57976bb17096b03aa11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
syntax = "proto3";

package Qbs;

message Request {
    string name = 1;
}

message Response {
    string name = 1;
}	

service Grpc {
    rpc doWork(Request) returns (Response) {}
}