pub trait FileSystemPort {
// Required methods
fn write(&self, instruction: &FileWriteInstruction) -> Result<(), Error>;
fn read(&self, instruction: &FileReadInstruction) -> Result<Vec<u8>, Error>;
}Expand description
Describes how template file creation should be handled.