blob: d825eeb49571be65931d52e048ed2e14f432896c [file] [log] [blame]
Comran Morshed25f81a02016-01-23 13:40:10 +00001#include "y2016/control_loops/superstructure/superstructure.h"
2
3#include "aos/linux_code/init.h"
4
5int main() {
6 ::aos::Init();
7 ::y2016::control_loops::Superstructure superstructure;
8 superstructure.Run();
9 ::aos::Cleanup();
10 return 0;
11}