summaryrefslogtreecommitdiff
path: root/samples/echobot-webhook-server/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'samples/echobot-webhook-server/src/main.cpp')
-rw-r--r--samples/echobot-webhook-server/src/main.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/samples/echobot-webhook-server/src/main.cpp b/samples/echobot-webhook-server/src/main.cpp
index 7b5776a..d51246d 100644
--- a/samples/echobot-webhook-server/src/main.cpp
+++ b/samples/echobot-webhook-server/src/main.cpp
@@ -26,6 +26,11 @@ int main() {
bot.getApi().sendMessage(message->chat->id, "Your message is: " + message->text);
});
+ signal(SIGINT, [](int s) {
+ printf("SIGINT got\n");
+ exit(0);
+ });
+
try {
printf("Bot username: %s\n", bot.getApi().getMe()->username.c_str());