~ubuntu-branches/ubuntu/wily/rebar/wily

« back to all changes in this revision

Viewing changes to inttest/proto_gpb/proto/a/b/test3.proto

  • Committer: Package Import Robot
  • Author(s): Nobuhiro Iwamatsu
  • Date: 2015-07-04 03:25:04 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20150704032504-x2vdmdxrlmgaurko
Tags: 2.6.0-1
* New upstream released.
* Update debian/rules. (Closes: #790633)
  - Disabled test. Test of rebar became necessary retest package.
    However, this package is not yet. This is until the retest is installed on
    Debian, to disable test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- c-basic-offset: 4; indent-tabs-mode: nil -*-
 
2
// ex: ts=4 sw=4 et
 
3
 
 
4
package test3;
 
5
 
 
6
service test3
 
7
{
 
8
    rpc testRpc3(RPC_INPUT3) returns (RPC_OUTPUT3);
 
9
}
 
10
 
 
11
message RPC_INPUT3
 
12
{
 
13
    optional string str = 1;
 
14
}
 
15
 
 
16
message RPC_OUTPUT3
 
17
{
 
18
    optional string str = 1;
 
19
}