eis/TestProject/DCR/connection/read_config.h

19 lines
393 B
C
Raw Normal View History

#pragma once
#include <TestProject/DCR/fp.h>
#include <nlohmann/json.hpp>
#include <string>
namespace DCR {
using namespace nlohmann;
/**
* @brief Get the config object
* @param category
* @param entry
* @return json
*/
maybe<json> read_config_maybe(std::string&& category, std::string&& entry);
} // namespace DCR