fix: add missing log/rusqlite imports and remove unused imports

This commit is contained in:
Andrew Phillips (aider)
2025-05-10 08:39:50 -03:00
parent 6a0c999d3d
commit 6c3f717b8d

View File

@@ -1,10 +1,12 @@
use anyhow::{Context, Result, Error, anyhow};
use anyhow::{Context, Result, anyhow};
use std::fs;
use std::path::PathBuf;
use crate::db::{self, Item};
use crate::compression::CompressionType;
use crate::db::self;
use clap::Command;
use log::{debug, warn};
use clap::error::ErrorKind;
use rusqlite::Connection;
pub fn mode_delete(
cmd: &mut Command,