Nagram/TMessagesProj/jni/voip/tgcalls/JsonConfig.cpp

14 lines
206 B
C++
Raw Normal View History

2020-08-21 23:59:49 +00:00
#include "JsonConfig.h"
namespace tgcalls {
JsonConfig::JsonConfig(Values values) : _values(values) {
}
Value JsonConfig::getValue(std::string key) {
return _values[key];
}
} // namespace tgcalls