#include "index_response.hpp" namespace tawashi { IndexResponse::IndexResponse() : Response("text/html") { } void IndexResponse::on_send (std::ostream& parStream) { parStream << R"(


)"; } } //namespace tawashi