aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/coro/csi/test.proto
blob: 3e53ade7cfb3ef9ee99e1c4d54096001052d4f0a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

syntax = "proto3";

message TestRequest {
    string name = 1;
}

message TestReply {
    string name = 1;
}

service TestService {
    rpc my_test (TestRequest) returns (TestReply) {}
}