]> git.sesse.net Git - nageru/blob - json.proto
Fix some compiler warnings.
[nageru] / json.proto
1 // Messages used to produce JSON (it's the simplest way we can create valid
2 // JSON without pulling in an external JSON library).
3
4 syntax = "proto2";
5
6 message Channels {
7         repeated Channel channel = 1;
8 }
9
10 message Channel {
11         required int32 index = 1;
12         required string name = 2;
13         required string color = 3;
14 }