blob: 2819f10bee31950e6f6082b3e6daaead559ec6b7 [file] [log] [blame]
Brian Silverman17f503e2015-08-02 18:17:18 -07001#include "y2014/control_loops/shooter/shooter.h"
2
3#include "aos/linux_code/init.h"
4
5int main() {
6 ::aos::Init();
Austin Schuh24957102015-11-28 16:04:40 -08007 ::y2014::control_loops::ShooterMotor shooter;
Brian Silverman17f503e2015-08-02 18:17:18 -07008 shooter.Run();
9 ::aos::Cleanup();
10 return 0;
11}