mirror of
https://github.com/go-micro/go-micro.git
synced 2025-03-29 20:39:48 +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;
|
||
|
}
|