1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2025-08-06 17:40:59 +00:00

cargo fmt

This commit is contained in:
Timo Kösters 2022-10-08 13:03:07 +02:00
parent 342c9bff4f
commit 419da573d9
No known key found for this signature in database
GPG key ID: 24DA7517711A2BA4
29 changed files with 143 additions and 119 deletions

View file

@ -13,15 +13,13 @@ mod database;
mod service;
mod utils;
use std::{
sync::{RwLock},
};
use std::sync::RwLock;
pub use api::ruma_wrapper::{Ruma, RumaResponse};
pub use config::Config;
pub use database::KeyValueDatabase;
pub use service::{pdu::PduEvent, Services};
pub use utils::error::{Error, Result};
pub use database::KeyValueDatabase;
pub static SERVICES: RwLock<Option<&'static Services>> = RwLock::new(None);