blob: e37ae57c41982f3dfe72094525631b757a6e7823 [file] [log] [blame]
James Kuszmaulc0568f22014-03-05 20:33:00 -08001#include "aos/common/time.h"
2#include "aos/linux_code/init.h"
3#include "aos/common/logging/logging.h"
4#include "frc971/actions/catch_action.q.h"
5#include "frc971/actions/catch_action.h"
6
7using ::aos::time::Time;
8
9int main(int /*argc*/, char * /*argv*/ []) {
10 ::aos::Init();
11
12 frc971::actions::CatchAction action_catch(
13 &::frc971::actions::catch_action);
14 action_catch.Run();
15
16 ::aos::Cleanup();
17 return 0;
18}
19