@brief Handle the pull request @param request the request @param send_response the send response @param send_streaming_response the send streaming response
| 987 | ///@param send_response the send response |
| 988 | ///@param send_streaming_response the send streaming response |
| 989 | void RestHandler::handle_pull(const json& request, |
| 990 | std::function<void(const json&)> send_response, |
| 991 | StreamResponseCallback send_streaming_response) { |
| 992 | json error_response = {{"error", "Pull operation not implemented"}}; |
| 993 | send_response(error_response); |
| 994 | } |
| 995 | |
| 996 | ///@brief Handle the push request |
| 997 | ///@param request the request |