Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test.proto « testdata « streamrpc « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7614a07a946f6699bacf28c028543ed61cb1ca70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
syntax = "proto3";

package test.streamrpc;

option go_package = "gitlab.com/gitlab-org/gitaly/v14/internal/streamrpc/testdata";

import "google/protobuf/empty.proto";

service Test {
  rpc Stream(StreamRequest) returns (google.protobuf.Empty) {}
}

message StreamRequest {
  bool fail = 1;
  string string_field = 2;
}