firstAttemt

This commit is contained in:
2024-02-24 22:48:35 +03:00
commit f78a4dcf7b
4 changed files with 117 additions and 0 deletions

8
main.cpp Normal file
View File

@@ -0,0 +1,8 @@
#include "bot.h"
int main() {
const std::string token = "YOUR_BOT_TOKEN";
Bot bot(token);
bot.start();
return 0;
}