summaryrefslogtreecommitdiff
path: root/src/data.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.rs')
-rw-r--r--src/data.rs13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/data.rs b/src/data.rs
index c12db94..5674f92 100644
--- a/src/data.rs
+++ b/src/data.rs
@@ -68,15 +68,16 @@ pub fn new_quote(c: &Connection, date: &str, author: &str, content: &str) -> Res
Ok(())
}
-pub fn new_vote(c: &Connection, quote_id: i64, score: i32) -> Result<()>{
- c.execute(
- r#"
+pub fn new_vote(c: &Connection, quote_id: i64, score: i32) -> Result<()> {
+ c.execute(
+ r#"
INSERT INTO votes (quote_id, score) VALUES
(?1, ?2)
"#,
- &[&quote_id, &score])?;
- info!("New vote: quote_id({}) score({})", quote_id, score);
- Ok(())
+ &[&quote_id, &score],
+ )?;
+ info!("New vote: quote_id({}) score({})", quote_id, score);
+ Ok(())
}
pub fn approve_quote(c: &Connection, quote_id: i64) -> Result<()> {