| 133 | } |
| 134 | |
| 135 | static std::string JsonInt(int64_t n) { |
| 136 | return std::to_string(n); |
| 137 | } |
| 138 | |
| 139 | static std::string JsonError(const std::string& message) { |
| 140 | return JsonObject({{"success", JsonBool(false)}, {"error", JsonString(message)}}); |
no outgoing calls
no test coverage detected