blob: 9907cfe1b17a6191a1d3ff18f06ee173c270787d [file] [log] [blame]
#include "bot3/control_loops/shooter/shooter.h"
#include "aos/atom_code/init.h"
int main() {
::aos::Init();
bot3::control_loops::ShooterMotor shooter;
shooter.Run();
::aos::Cleanup();
return 0;
}