blob: f3dd1adbaaf450679743c441ad721513c7bcd95b [file] [log] [blame]
Tyler Chatowe51334a2019-01-20 16:58:16 -08001#include "y2019/control_loops/superstructure/superstructure.h"
2
3#include "aos/init.h"
4
5int main() {
6 ::aos::Init();
7 ::y2019::control_loops::superstructure::Superstructure superstructure;
8 superstructure.Run();
9 ::aos::Cleanup();
10 return 0;
11}