From e4cf0fbf1ef75ecc7c03e4bd0369adc95cd42ee1 Mon Sep 17 00:00:00 2001 From: Jonas Platte Date: Tue, 4 Feb 2020 11:38:07 +0100 Subject: [PATCH] Clean up lib.rs --- src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index d550bca0..bb9c5d1e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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(Arc>);