blob: 4036c5f7851f0634a4143f45ad246cb9be11950c [file] [log] [blame]
Comran Morshed2a97bc82016-01-16 17:27:01 +00001#include "y2016/control_loops/shooter/shooter.h"
2
3#include "aos/linux_code/init.h"
4
5int main() {
6 ::aos::Init();
Austin Schuh09c2b0b2016-02-13 15:53:16 -08007 ::y2016::control_loops::shooter::Shooter shooter;
Comran Morshed2a97bc82016-01-16 17:27:01 +00008 shooter.Run();
9 ::aos::Cleanup();
10 return 0;
11}