mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-25 21:52:21 +00:00
8 lines
136 B
Protocol Buffer
Executable File
8 lines
136 B
Protocol Buffer
Executable File
syntax = "proto2";
|
|
option go_package = "sub";
|
|
package grpc.gateway.examples.sub;
|
|
|
|
message StringMessage {
|
|
required string value = 1;
|
|
}
|