Skip to content

Instantly share code, notes, and snippets.

@danlark1
Created July 30, 2020 12:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save danlark1/72d4815fbf7d689757adfc3efa87a800 to your computer and use it in GitHub Desktop.
Save danlark1/72d4815fbf7d689757adfc3efa87a800 to your computer and use it in GitHub Desktop.
syntax = "proto3";
package tgnews_index;
message Doc {
bytes title = 1;
bytes url = 2;
string lang = 3;
string category = 4;
repeated float embed = 5;
int64 timestamp = 6;
int64 age = 7;
}
message Docs {
map<string, Doc> docs = 1; // names to docs
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment