]> git.sesse.net Git - nageru/blob - json.proto
Expose the absolute path to the theme in Nageru.THEME_PATH.
[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 message Channels {
5         repeated Channel channel = 1;
6 }
7
8 message Channel {
9         required int32 index = 1;
10         required string name = 2;
11         required string color = 3;
12 }