From 7e4251d8aad41852e18ce9449c3e818cbca44fe0 Mon Sep 17 00:00:00 2001 From: Ben Morrison Date: Wed, 28 Aug 2019 00:01:42 -0400 Subject: cleanup --- src/db.rs | 34 ---------------------------------- src/main.rs | 3 ++- 2 files changed, 2 insertions(+), 35 deletions(-) (limited to 'src') diff --git a/src/db.rs b/src/db.rs index a0cc2cf..fe10325 100644 --- a/src/db.rs +++ b/src/db.rs @@ -17,14 +17,6 @@ pub struct Conn { pub conn: rusqlite::Connection, } -#[derive(Debug)] -pub enum Cmd { - Create(Post), - Update(Post), - Disconnect, - NOOP, -} - impl Conn { fn init() -> rusqlite::Connection { let start = time::Instant::now(); @@ -60,29 +52,3 @@ impl Conn { Conn { conn: Conn::init() } } } - -impl Cmd { - pub fn new(txt: &str, post: Post) -> Self { - match txt { - "create" => Cmd::Create(post), - "update" => Cmd::Update(post), - "disconnect" => Cmd::Disconnect, - _ => Cmd::NOOP, - } - } -} - -impl Post { - pub fn new(title: &str, author: &str, body: &str) -> Self { - let id = 0; - let title = title.to_string(); - let author = author.to_string(); - let body = body.to_string(); - Post { - id, - title, - author, - body, - } - } -} diff --git a/src/main.rs b/src/main.rs index 48c6802..3f9d2a8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -109,5 +109,6 @@ fn post(db: &db::Conn) { .into_string() .unwrap(); - stmt.execute_named(&[(":title", &title), (":author", &user), (":body", &body)]); + stmt.execute_named(&[(":title", &title), (":author", &user), (":body", &body)]) + .unwrap(); } -- cgit 1.4.1-2-gfad0