mirror of
https://github.com/NekoX-Dev/NekoX.git
synced 2024-12-15 03:49:53 +01:00
14 lines
206 B
C++
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
|