diff --git a/src/client/mod.rs b/src/client/mod.rs index 21d39271e..79669ae77 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -1,6 +1,6 @@ pub(crate) mod response; -mod oauth_yup_oauth2; +mod oauth; use std::path::{Path, PathBuf}; use std::time::Duration; @@ -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 { diff --git a/src/client/oauth_yup_oauth2.rs b/src/client/oauth.rs similarity index 100% rename from src/client/oauth_yup_oauth2.rs rename to src/client/oauth.rs