summaryrefslogtreecommitdiffstats
path: root/src/client.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.rs')
-rw-r--r--src/client.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client.rs b/src/client.rs
index b3ff6bb..423beaf 100644
--- a/src/client.rs
+++ b/src/client.rs
@@ -1,4 +1,7 @@
-use std::{ops::{Deref, DerefMut}, sync::Arc};
+use std::{
+ ops::{Deref, DerefMut},
+ sync::Arc,
+};
use jid::BareJID;
use leptos::prelude::*;
@@ -27,4 +30,3 @@ impl DerefMut for Client {
&mut self.client
}
}
-