Clean up lib.rs

This commit is contained in:
Jonas Platte 2020-02-04 11:38:07 +01:00
parent ab68029b80
commit e4cf0fbf1e
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -102,16 +102,15 @@ use url::Url;
use crate::error::InnerError;
pub use crate::{error::Error, session::Session};
pub use ruma_client_api as api;
pub use ruma_events as events;
pub use ruma_identifiers as identifiers;
/// Matrix client-server API endpoints.
//pub mod api;
mod error;
mod session;
pub use self::{error::Error, session::Session};
/// A client for the Matrix client-server API.
#[derive(Debug)]
pub struct Client<C>(Arc<ClientData<C>>);