(path: &str)
| 13 | } |
| 14 | |
| 15 | pub fn read(path: &str) -> Vec<u8> { |
| 16 | let full_path = asset_path(path); |
| 17 | |
| 18 | std::fs::read(full_path).unwrap() |
| 19 | } |
| 20 | |
| 21 | pub fn read_to_string(path: &str) -> String { |
| 22 | let full_path = asset_path(path); |
no test coverage detected