| 105 | |
| 106 | |
| 107 | std::string Connector::get(const std::string& path) const |
| 108 | { |
| 109 | if (m_arbiter->isLocal(path)) |
| 110 | return m_arbiter->get(path); |
| 111 | else |
| 112 | return m_arbiter->get(path, m_headers, m_query); |
| 113 | } |
| 114 | |
| 115 | NL::json Connector::getJson(const std::string& path) const |
| 116 | { |
no outgoing calls
no test coverage detected