Delete the error mapper utility

Now that all API functions are the new versions using my gt_tools::Error
type natively, I don't need to map from the reqwest::Error into the
wrapped variant.
This commit is contained in:
2025-05-29 17:46:00 -05:00
parent 3e563d4bb0
commit baf0117a74

View File

@@ -76,7 +76,3 @@ async fn main() -> Result<(), gt_tools::Error> {
Ok(()) Ok(())
} }
fn reqwest_to_gttool(err: reqwest::Error) -> gt_tools::Error {
gt_tools::Error::WrappedReqwestErr(err)
}