diff --git a/bindings/matrix-sdk-ffi/src/authentication_service.rs b/bindings/matrix-sdk-ffi/src/authentication.rs similarity index 100% rename from bindings/matrix-sdk-ffi/src/authentication_service.rs rename to bindings/matrix-sdk-ffi/src/authentication.rs diff --git a/bindings/matrix-sdk-ffi/src/client.rs b/bindings/matrix-sdk-ffi/src/client.rs index e8c23b749..66872eed1 100644 --- a/bindings/matrix-sdk-ffi/src/client.rs +++ b/bindings/matrix-sdk-ffi/src/client.rs @@ -60,7 +60,7 @@ use url::Url; use super::{room::Room, session_verification::SessionVerificationController, RUNTIME}; use crate::{ - authentication_service::{AuthenticationError, HomeserverLoginDetails, OidcConfiguration}, + authentication::{AuthenticationError, HomeserverLoginDetails, OidcConfiguration}, client, encryption::Encryption, notification::NotificationClient, diff --git a/bindings/matrix-sdk-ffi/src/client_builder.rs b/bindings/matrix-sdk-ffi/src/client_builder.rs index d7c0d3484..e277969b3 100644 --- a/bindings/matrix-sdk-ffi/src/client_builder.rs +++ b/bindings/matrix-sdk-ffi/src/client_builder.rs @@ -19,7 +19,7 @@ use zeroize::Zeroizing; use super::{client::Client, RUNTIME}; use crate::{ - authentication_service::OidcConfiguration, client::ClientSessionDelegate, error::ClientError, + authentication::OidcConfiguration, client::ClientSessionDelegate, error::ClientError, helpers::unwrap_or_clone_arc, task_handle::TaskHandle, }; diff --git a/bindings/matrix-sdk-ffi/src/lib.rs b/bindings/matrix-sdk-ffi/src/lib.rs index 93a551910..aba6e2259 100644 --- a/bindings/matrix-sdk-ffi/src/lib.rs +++ b/bindings/matrix-sdk-ffi/src/lib.rs @@ -20,7 +20,7 @@ macro_rules! unwrap_or_clone_arc_into_variant { }; } -mod authentication_service; +mod authentication; mod chunk_iterator; mod client; mod client_builder;