blob: 04d245eb937e1825ff5877b299ef5421b8a74469 [file] [log] [blame]
Sabina Davis8d20ca82018-02-19 13:17:45 -08001#include "y2018/control_loops/superstructure/superstructure.h"
2
3#include "aos/linux_code/init.h"
4
5int main() {
6 ::aos::Init();
7 ::y2018::control_loops::superstructure::Superstructure superstructure;
8 superstructure.Run();
9 ::aos::Cleanup();
10 return 0;
11}