Skip to content

Commit

Permalink
Rename module oauth_yup_oauth2 to oauth
Browse files Browse the repository at this point in the history
  • Loading branch information
jutuon committed May 26, 2024
1 parent 07146e8 commit ee10da1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/client/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pub(crate) mod response;

mod oauth_yup_oauth2;
mod oauth;

use std::path::{Path, PathBuf};
use std::time::Duration;
Expand All @@ -11,9 +11,9 @@ use crate::client::response::FcmResponse;
use crate::message::{Message, MessageWrapper};
use crate::RetryAfter;

use self::oauth_yup_oauth2::OauthClient;
use self::oauth::OauthClient;

pub use self::oauth_yup_oauth2::OauthError;
pub use self::oauth::OauthError;

#[derive(thiserror::Error, Debug)]
pub enum FcmClientError {
Expand Down
File renamed without changes.

0 comments on commit ee10da1

Please sign in to comment.