• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1syntax = "proto3";
2
3package tests.bcr.proto;
4option go_package = "example.com/foo_proto";
5
6import "google/protobuf/empty.proto";
7
8message Foo {
9  int64 value = 1;
10  google.protobuf.Empty empty = 2;
11}
12
13service Fooer {
14  rpc RoundTripFoo (Foo) returns (Foo) {}
15}
16