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 ---------------------------------- 1 file changed, 34 deletions(-) (limited to 'src/db.rs') 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, - } - } -} -- cgit 1.4.1-2-gfad0