From 91105587c2d53199b5e5df89c508305f8efd4e70 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 24 Jul 2024 18:10:03 -0400 Subject: aws_context is now reliably the first non-self argument, rather than sporadically the last one --- src/route53.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/route53.rs') 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(name: &Name, aws_context: &C) -> Result +pub async fn zone_for_domain(aws_context: &C, name: &Name) -> Result where C: Route53, { -- cgit v1.2.3