blob: aec10d8f3e5337b8aaf3d96a6eb16bcba0d6c12d [file] [log] [blame]
James Kuszmauld67f6d22023-02-05 17:37:25 -08001include "y2023/constants/constants.fbs";
2
3namespace y2023;
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;