DynuIPRefresher/inc/api/TelegramAPI.h

23 lines
400 B
C
Raw Normal View History

//
// Created by lukas on 08.05.19.
//
#pragma once
#include <string>
#include "API.h"
2019-05-08 17:31:49 +00:00
class TelegramAPI : API {
public:
/**
* send telegram Message to predefined destination
* @param text message
*/
void sendMessage(std::string text);
private:
2019-06-18 09:42:26 +00:00
const std::string apikey = "717213769:AAHan1nSXhUsxLJAN1Dv8Oc0z8wqwDdYPn4";
const std::string chatid = "618154204";
};