An attribute macro to add context to errors from a function.
```
{}
pub fn parseconfig(path: &Path) -> anyhow::Result { let text = readto_string(path)?; Ok(text.parse()?) } ```