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/bin/aws-autoscaling-dns.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/bin') diff --git a/src/bin/aws-autoscaling-dns.rs b/src/bin/aws-autoscaling-dns.rs index 6999b6b..589f9d5 100644 --- a/src/bin/aws-autoscaling-dns.rs +++ b/src/bin/aws-autoscaling-dns.rs @@ -1,9 +1,9 @@ use clap::Parser; -use aws_autoscaling_dns::cli; +use aws_autoscaling_dns::cli::Args; #[tokio::main] -async fn main() -> cli::Result { - let args = cli::Args::parse(); +async fn main() -> anyhow::Result<()> { + let args = Args::parse(); args.run().await } -- cgit v1.2.3