Files
TgBot/main.cpp
2024-02-24 22:48:35 +03:00

8 lines
131 B
C++

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