Ed Tanous | 61e349a | 2023-05-31 11:57:43 -0700 | [diff] [blame] | 1 | #include "http_response.hpp" |
| 2 | |
Ed Tanous | 57fce80 | 2019-05-21 13:00:34 -0700 | [diff] [blame] | 3 | #include <nlohmann/json.hpp> |
| 4 | |
Ed Tanous | 61e349a | 2023-05-31 11:57:43 -0700 | [diff] [blame] | 5 | #include <string> |
Ed Tanous | 57fce80 | 2019-05-21 13:00:34 -0700 | [diff] [blame] | 6 | |
| 7 | namespace json_html_util |
| 8 | { |
| 9 | |
Ed Tanous | 61e349a | 2023-05-31 11:57:43 -0700 | [diff] [blame] | 10 | void dumpHtml(std::string& out, const nlohmann::json& json); |
| 11 | void prettyPrintJson(crow::Response& res); |
Ed Tanous | 57fce80 | 2019-05-21 13:00:34 -0700 | [diff] [blame] | 12 | |
| 13 | } // namespace json_html_util |