mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 19:04:35 +00:00
9 lines
90 B
Protocol Buffer
9 lines
90 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pubsub;
|
|
|
|
message Message {
|
|
string id = 1;
|
|
bytes body = 2;
|
|
}
|