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/route53.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/route53.rs')
| -rw-r--r-- | src/route53.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/route53.rs b/src/route53.rs index 67bccb5..89f4b03 100644 --- a/src/route53.rs +++ b/src/route53.rs @@ -1,14 +1,13 @@ use std::collections::HashSet; use std::str::FromStr; -use anyhow::anyhow; +use anyhow::{anyhow, Result}; use aws_sdk_route53 as route53; use aws_sdk_route53::types::{HostedZone, ResourceRecord, ResourceRecordSet, RrType}; use trust_dns_proto::rr::Name; use crate::dns::suffixes; use crate::hashable::Hashable; -use crate::result::Result; pub trait Route53 { fn route53(&self) -> &route53::Client; |
