diff --git a/src/main.rs b/src/main.rs index bca68a0..2499f1f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,6 +3,6 @@ use rusqlite::Connection; mod db; fn main() { - let connection = Connection::open("database.db").expect("Failed to open database."); - db::init(connection).expect("Failed to create database."); + let connection = Connection::open("database.db").expect("Failed to open database"); + db::init(connection).expect("Failed to create database"); }