Files
pytchat-fork/pytchat/paramgen/proto/header.proto
2020-05-31 00:33:46 +09:00

15 lines
173 B
Protocol Buffer

syntax = "proto3";
message Video {
string id = 1;
}
message HeaderInfo {
Video video = 1;
}
message Header {
HeaderInfo info = 1;
int32 terminator = 4;
}