aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node/examples/math.proto
diff options
context:
space:
mode:
Diffstat (limited to 'src/node/examples/math.proto')
-rw-r--r--src/node/examples/math.proto25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/node/examples/math.proto b/src/node/examples/math.proto
new file mode 100644
index 0000000000..14eff5daaf
--- /dev/null
+++ b/src/node/examples/math.proto
@@ -0,0 +1,25 @@
+syntax = "proto2";
+
+package math;
+
+message DivArgs {
+ required int64 dividend = 1;
+ required int64 divisor = 2;
+}
+
+message DivReply {
+ required int64 quotient = 1;
+ required int64 remainder = 2;
+}
+
+message FibArgs {
+ optional int64 limit = 1;
+}
+
+message Num {
+ required int64 num = 1;
+}
+
+message FibReply {
+ required int64 count = 1;
+} \ No newline at end of file