fix fmt problems

next
hamidreza kalbasi 2021-06-08 20:54:36 +04:30 committed by Timo Kösters
parent 2385bd1cfd
commit 2078af59d8
No known key found for this signature in database
GPG Key ID: 24DA7517711A2BA4
1 changed files with 6 additions and 1 deletions

View File

@ -20,7 +20,12 @@ use log::error;
use rocket::futures::{channel::mpsc, stream::FuturesUnordered, StreamExt};
use ruma::{DeviceId, ServerName, UserId};
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;
#[derive(Clone, Debug, Deserialize)]