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