blob: 31cea1ffab7b0e59a5ab80717afae03d61877fd8 [file] [log] [blame]
Ben Fredrickson8c6868c2014-03-01 07:52:53 +00001#include "stdio.h"
2
3#include "aos/common/control_loop/Timing.h"
4#include "aos/common/time.h"
5#include "aos/linux_code/init.h"
6#include "aos/common/logging/logging.h"
7#include "frc971/actions/shoot_action.q.h"
8#include "frc971/actions/shoot_action.h"
9
10using ::aos::time::Time;
11
12int main(int /*argc*/, char * /*argv*/[]) {
13 ::aos::Init();
14
15 frc971::actions::ShootAction shoot(&::frc971::actions::shoot_action);
16 shoot.Run();
17
18 ::aos::Cleanup();
19 return 0;
20}
21