blob: 18df9aa132acba881e44f60848df06fb20e356db [file] [log] [blame]
#include <stdio.h>
#include "aos/linux_code/init.h"
#include "aos/common/logging/logging.h"
#include "frc971/actions/shoot_action.q.h"
#include "frc971/actions/shoot_action.h"
using ::aos::time::Time;
int main(int /*argc*/, char * /*argv*/[]) {
::aos::Init();
frc971::actions::ShootAction shoot(&::frc971::actions::shoot_action);
shoot.Run();
::aos::Cleanup();
return 0;
}