| 46 | } |
| 47 | |
| 48 | void HttpHandler::HandleGames(http::web_request &req, http::web_response &rep) { |
| 49 | auto data = GetInstalledGamesAsJson(); |
| 50 | rep.fill_json(data); |
| 51 | } |
| 52 | |
| 53 | void HttpHandler::HandleGameStart(http::web_request &req, http::web_response &rep) { |
| 54 | LOGI("start body: {}", req.body()); |