mirror of
https://github.com/protobuf-c/protobuf-c.git
synced 2025-01-02 01:18:08 +08:00
12 lines
165 B
Protocol Buffer
12 lines
165 B
Protocol Buffer
|
package example;
|
||
|
|
||
|
message Word
|
||
|
{
|
||
|
required string word = 1;
|
||
|
};
|
||
|
|
||
|
service WordFuncs {
|
||
|
rpc Uppercase (Word) returns (Word);
|
||
|
rpc Lowercase (Word) returns (Word);
|
||
|
}
|