blob: ede2c89b370cf52a4d9869fc78dcfb5c543d3c66 [file] [log] [blame]
Ed Tanous61e349a2023-05-31 11:57:43 -07001#include "http_response.hpp"
2
Ed Tanous57fce802019-05-21 13:00:34 -07003#include <nlohmann/json.hpp>
4
Ed Tanous61e349a2023-05-31 11:57:43 -07005#include <string>
Ed Tanous57fce802019-05-21 13:00:34 -07006
7namespace json_html_util
8{
9
Ed Tanous61e349a2023-05-31 11:57:43 -070010void dumpHtml(std::string& out, const nlohmann::json& json);
11void prettyPrintJson(crow::Response& res);
Ed Tanous57fce802019-05-21 13:00:34 -070012
13} // namespace json_html_util