Cargo fmt.

This commit is contained in:
Paul Makles
2021-01-19 13:07:11 +00:00
parent 8bb694a1c8
commit 3a63d502d9
4 changed files with 12 additions and 11 deletions

View File

@@ -78,10 +78,12 @@ impl Message {
})?;
let channel = self.channel.clone();
ClientboundNotification::MessageDelete { id: self.id.clone() }
.publish(channel)
.await
.ok();
ClientboundNotification::MessageDelete {
id: self.id.clone(),
}
.publish(channel)
.await
.ok();
Ok(())
}