blob: 27520c11cc14471704478520ed3023258479bd1e [file] [log] [blame]
#include "y2019/control_loops/superstructure/superstructure.h"
#include "aos/events/shm-event-loop.h"
#include "aos/init.h"
int main() {
::aos::InitNRT(true);
::aos::ShmEventLoop event_loop;
::y2019::control_loops::superstructure::Superstructure superstructure(
&event_loop);
event_loop.Run();
::aos::Cleanup();
return 0;
}