DynuIPRefresher/src/api/TelegramAPI.h

23 lines
394 B
C
Raw Normal View History

//
// Created by lukas on 08.05.19.
//
#ifndef IPREFRESHER_TELEGRAMAPI_H
#define IPREFRESHER_TELEGRAMAPI_H
#include <string>
#include "API.h"
2019-05-08 17:31:49 +00:00
class TelegramAPI : API {
public:
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";
};
#endif //IPREFRESHER_TELEGRAMAPI_H