mirror of
https://github.com/xavo95/repak.git
synced 2025-01-19 03:09:12 +00:00
7 lines
170 B
Rust
7 lines
170 B
Rust
|
pub fn list(path: String, key: String) -> Result<(), unpak::Error> {
|
||
|
for file in super::load_pak(path, key)?.files() {
|
||
|
println!("{file}");
|
||
|
}
|
||
|
Ok(())
|
||
|
}
|