summaryrefslogtreecommitdiff
path: root/src/route53.rs
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2024-07-24 18:10:03 -0400
committerOwen Jacobson <owen@grimoire.ca>2024-07-24 18:10:03 -0400
commit91105587c2d53199b5e5df89c508305f8efd4e70 (patch)
treeb954e2750de8feb10888746337ecd89e6b8ea7ff /src/route53.rs
parentd2805c075dc5bc83f65e8dc9673e88d2a01bc11d (diff)
aws_context is now reliably the first non-self argument, rather than sporadically the last one
Diffstat (limited to 'src/route53.rs')
-rw-r--r--src/route53.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/route53.rs b/src/route53.rs
index c3fea47..b9d4c34 100644
--- a/src/route53.rs
+++ b/src/route53.rs
@@ -13,7 +13,7 @@ pub trait Route53 {
fn route53(&self) -> &route53::Client;
}
-pub async fn zone_for_domain<C>(name: &Name, aws_context: &C) -> Result<HostedZone>
+pub async fn zone_for_domain<C>(aws_context: &C, name: &Name) -> Result<HostedZone>
where
C: Route53,
{