(path: P)
| 7 | use perro_resource_api::ResPathSource; |
| 8 | |
| 9 | pub use perro_io::ZipLimits; |
| 10 | |
| 11 | pub fn list<P: ResPathSource>(path: P) -> io::Result<Vec<String>> { |
| 12 | let path = readable_disk_path(path.as_res_path_str())?; |
| 13 | perro_io::list_zip_file(path) |
| 14 | } |
| 15 |
nothing calls this directly
no test coverage detected