blob: dbebc1957c6834e431907494e4640f781777c53a [file] [log] [blame]
Niko Sohmers3860f8a2024-01-12 21:05:19 -08001include "y2024/constants/constants.fbs";
2
3namespace y2024;
4
5table TeamAndConstants {
6 team:long (id: 0);
7 data:Constants (id: 1);
8}
9
10table ConstantsList {
11 constants:[TeamAndConstants] (id: 0);
12}
13
14root_type ConstantsList;