mirror of
https://github.com/go-micro/go-micro.git
synced 2025-03-17 20:28:06 +02:00
9 lines
89 B
Protocol Buffer
9 lines
89 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package test;
|
|
|
|
message Message {
|
|
int64 seq = 1;
|
|
string data = 2;
|
|
}
|