diff options
author | Oleg Morozenkov <m@oleg.rocks> | 2019-12-05 00:42:09 +0300 |
---|---|---|
committer | Oleg Morozenkov <m@oleg.rocks> | 2019-12-05 00:42:34 +0300 |
commit | 9148563cb333bb6a3127138541de2fc086ff743b (patch) | |
tree | 8e25b1068ca689ae983a8f02334a6ff8182b693b /samples/echobot-conan/example.cpp | |
parent | 89ec4e3d1186e1a250adb18cb6a8cce7c4756bf6 (diff) |
Remove conan support
Diffstat (limited to 'samples/echobot-conan/example.cpp')
-rw-r--r-- | samples/echobot-conan/example.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/samples/echobot-conan/example.cpp b/samples/echobot-conan/example.cpp deleted file mode 100644 index f1c2863..0000000 --- a/samples/echobot-conan/example.cpp +++ /dev/null @@ -1,20 +0,0 @@ -#include <tgbot/tgbot.h> - -using namespace std; -using namespace TgBot; - -bool sigintGot = false; - -int main() { - Bot bot("PLACE YOUR TOKEN HERE"); - bot.getEvents().onCommand("start", [&bot](Message::Ptr message) { - bot.getApi().sendMessage(message->chat->id, "Hi!"); - }); - bot.getEvents().onAnyMessage([&bot](Message::Ptr message) { - printf("User wrote %s\n", message->text.c_str()); - if (StringTools::startsWith(message->text, "/start")) { - return; - } - bot.getApi().sendMessage(message->chat->id, "Your message is: " + message->text); - }); -} |