use anyhow::Result;
use std::path::Path;
pub fn safe_read(_path: &Path) -> Result<String> {
Err(anyhow::anyhow!("safe_read: Not implemented yet"))
}
pub fn safe_write(_path: &Path, _content: &str) -> Result<()> {
Err(anyhow::anyhow!("safe_write: Not implemented yet"))
}
pub fn hash_file(_path: &Path) -> Result<String> {
Err(anyhow::anyhow!("hash_file: Not implemented yet"))
}