From e9516faa146321347301998a46979047ca73bfba Mon Sep 17 00:00:00 2001 From: AndrielFR Date: Thu, 2 Jan 2025 11:16:03 -0300 Subject: [PATCH] chore: remove `pub(crate)` vis from `request` & `get_query` --- src/client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client.rs b/src/client.rs index 9699172..e2a36bc 100644 --- a/src/client.rs +++ b/src/client.rs @@ -238,7 +238,7 @@ impl Client { /// # Errors /// /// Returns an error if the request fails. - pub(crate) async fn request( + async fn request( &self, media_type: MediaType, action: Action, @@ -272,7 +272,7 @@ impl Client { /// # Errors /// /// Returns an error if the media type is not valid. - pub(crate) fn get_query(media_type: MediaType, action: Action) -> Result { + fn get_query(media_type: MediaType, action: Action) -> Result { let graphql_query = match action { Action::Get => { match media_type {