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