feat: can upload archives

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-02-18 01:29:46 +01:00
parent c54bbaf017
commit c3739c1bc1
16 changed files with 472 additions and 23 deletions

View File

@@ -0,0 +1,14 @@
use crate::app::SharedApp;
#[mockall_double::double]
use super::FileReader;
pub trait FileReaderExt {
fn file_reader(&self) -> FileReader;
}
impl FileReaderExt for SharedApp {
fn file_reader(&self) -> FileReader {
FileReader::new()
}
}