blob: 6ab834b83b10641b7b51644611721f5a46275f38 [file] [log] [blame]
Austin Schuh7b9a3ba2017-02-19 23:11:45 -08001#include "y2017/control_loops/superstructure/superstructure.h"
2
John Park398c74a2018-10-20 21:17:39 -07003#include "aos/init.h"
Austin Schuh7b9a3ba2017-02-19 23:11:45 -08004
5int main() {
6 ::aos::Init();
7 ::y2017::control_loops::superstructure::Superstructure superstructure;
8 superstructure.Run();
9 ::aos::Cleanup();
10 return 0;
11}