mirror of
https://github.com/go-micro/go-micro.git
synced 2025-04-23 11:07:43 +02:00
12 lines
161 B
Protocol Buffer
12 lines
161 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
// Example message
|
||
|
message Event {
|
||
|
// unique id
|
||
|
string id = 1;
|
||
|
// unix timestamp
|
||
|
int64 timestamp = 2;
|
||
|
// message
|
||
|
string message = 3;
|
||
|
}
|