cgp_error_anyhow/impls/
use_anyhow_error.rs

1use anyhow::Error;
2use cgp_core::error::ProvideErrorType;
3
4pub struct UseAnyhowError;
5
6impl<Context> ProvideErrorType<Context> for UseAnyhowError {
7    type Error = Error;
8}