DynuIPRefresher/inc/Credentials.h
lukas 722d25b325 use libconfig for a /etc/iprefresher.cfg config file
there can all the api credentials be specified
2020-04-29 20:06:27 +02:00

22 lines
348 B
C++

//
// Created by lukas on 11.02.20.
//
#pragma once
#include <string>
class Credentials {
public:
static std::string dynuapikey;
static std::string domainid; //id of the dynu domain
static std::string domainname;
static std::string telegramApiKey;
static std::string chatId;
static bool readCredentials();
private:
};