From 4f568db968cced94eb282d1353e43625ee8811bb Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Tue, 23 Jul 2024 19:21:03 -0400 Subject: Retire the `result` module. It didn't add much to have our own Result definition, over using `anyhow::Result` directly. --- src/autoscaling.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/autoscaling.rs') diff --git a/src/autoscaling.rs b/src/autoscaling.rs index 6c96279..81b9961 100644 --- a/src/autoscaling.rs +++ b/src/autoscaling.rs @@ -1,8 +1,7 @@ -use anyhow::anyhow; +use anyhow::{anyhow, Result}; use aws_sdk_autoscaling as autoscaling; use aws_sdk_autoscaling::types::AutoScalingGroup; -use crate::result::Result; use crate::single::Single; pub trait AutoScaling { -- cgit v1.2.3