matrix-sdk: Rename the async client file.

master
Damir Jelić 2020-05-08 11:40:33 +02:00
parent 720e45509a
commit db26ae9027
2 changed files with 2 additions and 2 deletions

View File

@ -34,9 +34,9 @@ pub use reqwest::header::InvalidHeaderValue;
#[cfg(feature = "encryption")]
pub use matrix_sdk_base::{Device, TrustState};
mod async_client;
mod client;
mod request_builder;
pub use async_client::{AsyncClient, AsyncClientConfig, SyncSettings};
pub use client::{AsyncClient, AsyncClientConfig, SyncSettings};
pub use request_builder::{MessagesRequestBuilder, RoomBuilder};
pub(crate) const VERSION: &str = env!("CARGO_PKG_VERSION");