blob: ccc5fab08e8a5773d3c7501a70cf3e6a792b772d [file] [log] [blame]
Comran Morshedfab32002015-08-30 14:48:54 +00001#include "bot3/control_loops/intake/intake.h"
2
3#include "aos/linux_code/init.h"
4
5int main() {
6 ::aos::Init();
7 ::bot3::control_loops::Intake intake;
8 intake.Run();
9 ::aos::Cleanup();
10 return 0;
11}