fix: remove unused imports params and Path in db.rs
Action Gateway CI/CD / Publish Release (push) Has been cancelled
Action Gateway CI/CD / Build & Test (push) Has been cancelled

This commit is contained in:
2026-03-09 02:44:11 -07:00
parent 071a862152
commit 225a681eb1
+1 -2
View File
@@ -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)?;