Public Access
fix: remove unused imports params and Path in db.rs
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
use rusqlite::{Connection, Result, params};
|
use rusqlite::{Connection, Result};
|
||||||
use std::path::Path;
|
|
||||||
|
|
||||||
pub fn open(path: &str) -> Result<Connection> {
|
pub fn open(path: &str) -> Result<Connection> {
|
||||||
let conn = Connection::open(path)?;
|
let conn = Connection::open(path)?;
|
||||||
|
|||||||
Reference in New Issue
Block a user