Browse Source

fix fmt problems

merge-requests/98/head
hamidreza kalbasi 5 years ago committed by Timo Kösters
parent
commit
2078af59d8
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4
  1. 7
      src/database.rs

7
src/database.rs

@ -20,7 +20,12 @@ use log::error;
use rocket::futures::{channel::mpsc, stream::FuturesUnordered, StreamExt}; use rocket::futures::{channel::mpsc, stream::FuturesUnordered, StreamExt};
use ruma::{DeviceId, ServerName, UserId}; use ruma::{DeviceId, ServerName, UserId};
use serde::Deserialize; use serde::Deserialize;
use std::{collections::HashMap, fs::{self, remove_dir_all}, io::Write, sync::{Arc, RwLock}}; use std::{
collections::HashMap,
fs::{self, remove_dir_all},
io::Write,
sync::{Arc, RwLock},
};
use tokio::sync::Semaphore; use tokio::sync::Semaphore;
#[derive(Clone, Debug, Deserialize)] #[derive(Clone, Debug, Deserialize)]

Loading…
Cancel
Save