use anyhow::Result;
pub struct FileAdapter {}
impl FileAdapter {
pub fn new() -> Self {
Self {}
}
pub fn read_file(&self, _path: &str) -> Result<String> {
Ok("".to_string())
}
pub fn write_file(&self, _path: &str, _content: &str) -> Result<()> {
Ok(())
}
}