github.com/micro/go-micro/examples@v0.0.0-20210105173217-bf4ab679e18b/event/srv/proto/pubsub.proto (about) 1 syntax = "proto3"; 2 3 // Example message 4 message Event { 5 // unique id 6 string id = 1; 7 // unix timestamp 8 int64 timestamp = 2; 9 // message 10 string message = 3; 11 }