2020-02-11 15:42:05 +00:00
|
|
|
//
|
|
|
|
// Created by lukas on 11.02.20.
|
|
|
|
//
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class Credentials {
|
|
|
|
public:
|
2020-02-11 16:14:17 +00:00
|
|
|
static std::string dynuapikey;
|
2020-02-11 15:42:05 +00:00
|
|
|
|
2020-02-11 16:14:17 +00:00
|
|
|
static std::string domainid; //id of the dynu domain
|
|
|
|
static std::string domainname;
|
2020-02-11 15:42:05 +00:00
|
|
|
|
2020-02-11 16:14:17 +00:00
|
|
|
static std::string telegramApiKey;
|
|
|
|
static std::string chatId;
|
2020-02-11 15:42:05 +00:00
|
|
|
|
2020-04-29 18:06:27 +00:00
|
|
|
static bool readCredentials();
|
2020-02-11 15:42:05 +00:00
|
|
|
|
2020-02-11 16:14:17 +00:00
|
|
|
private:
|
|
|
|
};
|