| 60 | } |
| 61 | |
| 62 | std::string read_plain_text_batch_file(const std::filesystem::path & path) { |
| 63 | return normalize_text_as_paragraph(read_text_file(path)); |
| 64 | } |
| 65 | |
| 66 | std::string read_json_text_batch_file(const std::filesystem::path & path) { |
| 67 | const auto root = engine::io::json::parse_file(path); |
nothing calls this directly
no test coverage detected