1 #include "http_response.hpp"
2 
3 #include <nlohmann/json.hpp>
4 
5 #include <string>
6 
7 namespace json_html_util
8 {
9 
10 void dumpHtml(std::string& out, const nlohmann::json& json);
11 void prettyPrintJson(crow::Response& res);
12 
13 } // namespace json_html_util
14