From 9003b81813ff171edfc6101868c226c5c7d1957c Mon Sep 17 00:00:00 2001 From: Igor Tolmachov Date: Fri, 8 Sep 2023 17:33:59 +0900 Subject: Add basic zip reader --- src/archive.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/archive.rs') diff --git a/src/archive.rs b/src/archive.rs index 3c2106a..ef74de9 100644 --- a/src/archive.rs +++ b/src/archive.rs @@ -4,7 +4,7 @@ use std::fs::File; use std::path::Path; pub struct Archive { - io: IO, + pub io: IO, } impl Archive { @@ -22,6 +22,8 @@ impl Archive { } } +impl Archive {} + impl Archive { pub fn file_writer(path: impl AsRef) -> ArchiveResult where @@ -36,3 +38,5 @@ impl Archive { }) } } + +impl Archive {} -- cgit v1.2.3