pub trait SyncFolderSource: Debug {
// Required method
fn get_file_content(
&self,
file_name: &Path,
) -> Result<(Vec<u8>, Option<String>), FetchError>;
}
pub trait SyncFolderSource: Debug {
// Required method
fn get_file_content(
&self,
file_name: &Path,
) -> Result<(Vec<u8>, Option<String>), FetchError>;
}