summaryrefslogtreecommitdiff
path: root/src/autoscaling.rs
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-07-23 19:21:03 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-07-23 19:31:41 -0400
commit4f568db968cced94eb282d1353e43625ee8811bb (patch)
treefc823896fa00c4e19ef5c2a2bb1b703314bba5d2 /src/autoscaling.rs
parent5429d2ab901380a92535e31c8cce6646e9b11c4f (diff)
Retire the `result` module.
It didn't add much to have our own Result definition, over using `anyhow::Result` directly.
Diffstat (limited to 'src/autoscaling.rs')
-rw-r--r--src/autoscaling.rs3
1 files changed, 1 insertions, 2 deletions
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 {