void SendMSG(string message) {
string URL = "https://api.telegram.org/bot"+TOKEN+"/sendMessage?chat_id="+CHAT_ID+"&text="+message;
CURL* curl = curl_easy_init();
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_easy_setopt(curl, CURLOPT_URL, URL.c_str());
curl_easy_perform(curl);
curl_easy_cleanup(curl);
};