1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-18 08:26:38 +02:00
go-micro/examples/pubsub/srv/proto/pubsub.proto
2020-12-26 15:17:20 +00:00

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;
}