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