1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-11-20 12:02:22 +03:00

Move the BoxCloneSyncService to mas-http

This commit is contained in:
Quentin Gliech
2022-11-21 18:45:53 +01:00
parent e726373669
commit 7f9be07e8d
5 changed files with 133 additions and 105 deletions

View File

@@ -28,6 +28,7 @@
mod client;
mod ext;
mod layers;
mod service;
#[cfg(feature = "client")]
pub use self::client::{client, make_traced_connector, make_untraced_client, ClientInitError};
@@ -44,6 +45,7 @@ pub use self::{
otel,
server::ServerLayer,
},
service::{BoxCloneSyncService, HttpService},
};
pub(crate) type BoxError = Box<dyn std::error::Error + Send + Sync>;