Shared error types for the [doing](https://github.com/aaronmallen/doing) CLI.
This crate provides the `Error` enum and `Result<T>` type alias used throughout the doing workspace.
```rust
use doing_error::{Error, Result};
fn example() -> Result<()> {
}
```
MIT — see [LICENSE](../../LICENSE) for details.