blob: 911ab295d9bbb652bc62d204d673dba9b761da50 [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();
7 ::y2016::control_loops::Shooter shooter;
8 shooter.Run();
9 ::aos::Cleanup();
10 return 0;
11}