Run cargo fmt

This commit is contained in:
Paul Makles
2021-01-18 22:02:46 +00:00
parent 34ac8f54ef
commit 901b29f49e
5 changed files with 24 additions and 23 deletions

View File

@@ -55,11 +55,8 @@ pub async fn req(user: User, target: Ref, message: Json<Data>) -> Result<JsonVal
nonce: Some(message.nonce.clone()),
edited: None,
};
msg
.clone()
.publish()
.await?;
msg.clone().publish().await?;
Ok(json!(msg))
}