From 752f3b02158b6dd706a790bc9cd82e55894c5ce6 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sun, 7 Jun 2026 15:46:30 -0400 Subject: [PATCH] Updating function parameter type --- src/messaging/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/messaging/mod.rs b/src/messaging/mod.rs index a7f1893..418cdd4 100644 --- a/src/messaging/mod.rs +++ b/src/messaging/mod.rs @@ -4,7 +4,7 @@ use textsender_models::message::Message; pub async fn send_messages( config: &TwilioConfig, - contacts: &Vec, + contacts: &[Contact], message: &Message, second_interval: u64, ) {