From e02f0ee3d13309b185e98ae3523a3ca8197968e0 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Tue, 14 Oct 2025 06:46:26 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor(cli):=20remove=20?= =?UTF-8?q?unused=20Delete,=20Trash=20trait=20-=20Remove=20Delete=20and=20?= =?UTF-8?q?Trash=20traits=20from=20cull=5Fgmail=20-=20Use=20RuleProcessor?= =?UTF-8?q?=20instead=20of=20Delete=20and=20Trash=20traits?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/cli/trash_cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/trash_cli.rs b/src/cli/trash_cli.rs index 4b2aadd..5eb9959 100644 --- a/src/cli/trash_cli.rs +++ b/src/cli/trash_cli.rs @@ -1,5 +1,5 @@ use clap::Parser; -use cull_gmail::{Delete, Error, GmailClient, MessageList, Trash}; +use cull_gmail::{Error, GmailClient, MessageList, RuleProcessor}; /// Command line options for the list subcommand #[derive(Debug, Parser)]