From 0b7aa02704f6ece97d17fbb118519c5cc62caaba Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Wed, 19 Jan 2022 07:45:21 +0000 Subject: [PATCH] Bot prints exchange feed --- bot.cpp | 22 +++++++++++++++++++++- 1 files changed, 21 insertions(+), 1 deletions(-) diff --git a/bot.cpp b/bot.cpp index 2b2d6f7..0a25597 100644 --- a/bot.cpp +++ b/bot.cpp @@ -1,3 +1,23 @@ #include "strat.hpp" +#include <csignal> +#include <cstdlib> +#include <iostream> -int main(void) {} +void signalHandler(int signum) +{ + strat::destroy(); + std::exit(0); +} + +void no(int signum) +{ + std::cout << "no." << std::endl; +} + +int main(void) +{ + signal(SIGINT, signalHandler); + // signal(SIGTERM, no); + strat::initialise(); + strat::mainLoop(); +} -- Gitblit v1.9.3