1
0
mirror of https://github.com/NekoX-Dev/NekoX.git synced 2024-12-15 03:49:53 +01:00
NekoX/TMessagesProj/jni/voip/tgcalls/JsonConfig.cpp
2020-09-30 16:48:47 +03:00

14 lines
206 B
C++

#include "JsonConfig.h"
namespace tgcalls {
JsonConfig::JsonConfig(Values values) : _values(values) {
}
Value JsonConfig::getValue(std::string key) {
return _values[key];
}
} // namespace tgcalls