14 lines
261 B
Protocol Buffer
14 lines
261 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package main;
|
|
|
|
option go_package = ".;main";
|
|
// The request message containing the user's name.
|
|
message Request {
|
|
// NameType nametype = 1;
|
|
}
|
|
|
|
// The response message containing the greetings
|
|
message Reply {
|
|
string message = 1;
|
|
} |