Skip to content

Commit

Permalink
chore: remove pub(crate) vis from request & get_query
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrielFR committed Jan 2, 2025
1 parent 1308719 commit e9516fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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<String> {
fn get_query(media_type: MediaType, action: Action) -> Result<String> {
let graphql_query = match action {
Action::Get => {
match media_type {
Expand Down

0 comments on commit e9516fa

Please sign in to comment.