| 36 | } |
| 37 | |
| 38 | std::pair<bool, std::string> readAsString(const std::string& path) |
| 39 | { |
| 40 | auto res = load(path); |
| 41 | auto vec = res.second; |
| 42 | return std::make_pair(res.first, std::string(vec.begin(), vec.end())); |
| 43 | } |
| 44 | |
| 45 | std::string response_head_file(const std::string& file_name){ |
| 46 |
no test coverage detected