From c9d167da8df3f5f201896fb81795f8a21335fe91 Mon Sep 17 00:00:00 2001 From: phoenix Date: Thu, 4 Jun 2026 21:06:08 -0400 Subject: [PATCH] Changed name of function --- src/twilio/api/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twilio/api/mod.rs b/src/twilio/api/mod.rs index fe0e99b..df16f74 100644 --- a/src/twilio/api/mod.rs +++ b/src/twilio/api/mod.rs @@ -1,6 +1,6 @@ pub mod types; -pub async fn popp(response: reqwest::Response) -> serde_json::Value { +pub async fn response_to_json(response: reqwest::Response) -> serde_json::Value { match response.json().await { Ok(json_body) => { json_body