| 40 | } |
| 41 | |
| 42 | void HttpHandler::HandleSimpleInfo(http::web_request &req, http::web_response &rep) { |
| 43 | auto info = this->context_->MakeDesktopLinkMessage(); |
| 44 | auto data = WrapBasicInfo(200, "ok", info); |
| 45 | rep.fill_json(data); |
| 46 | } |
| 47 | |
| 48 | void HttpHandler::HandleGames(http::web_request &req, http::web_response &rep) { |
| 49 | auto data = GetInstalledGamesAsJson(); |
no test coverage detected