mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-25 21:52:21 +00:00
8 lines
156 B
Protocol Buffer
Executable File
8 lines
156 B
Protocol Buffer
Executable File
syntax = "proto3";
|
|
option go_package = "github.com/grpc-ecosystem/grpc-gateway/examples/proto/sub2";
|
|
package sub2;
|
|
|
|
message IdMessage {
|
|
string uuid = 1;
|
|
}
|