diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-07-23 19:21:03 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-07-23 19:31:41 -0400 |
| commit | 4f568db968cced94eb282d1353e43625ee8811bb (patch) | |
| tree | fc823896fa00c4e19ef5c2a2bb1b703314bba5d2 /src/bin/aws-autoscaling-dns.rs | |
| parent | 5429d2ab901380a92535e31c8cce6646e9b11c4f (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/bin/aws-autoscaling-dns.rs')
| -rw-r--r-- | src/bin/aws-autoscaling-dns.rs | 6 |
1 files changed, 3 insertions, 3 deletions
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 } |
