Protobufs
Install protocol buffers
Define the data structure with protobuf
syntax="proto3";
package main;
message UserMessage {
string Username =1;
string Text = 2;
}Generate proto for Go
Javascript support
Proto Marshal and Unmarshal
Last updated