From 13a0b1496f7810cc321f3eeae1ef295a9ca80254 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Thu, 9 Oct 2025 17:48:05 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(gh-release):=20add=20delete=20?= =?UTF-8?q?module?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - introduce delete module for handling deletion operations --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index e7d7030..e555f6f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -6,6 +6,7 @@ mod config; mod credential; +mod delete; mod eol_action; mod error; mod labels; @@ -17,6 +18,7 @@ pub(crate) mod utils; pub use config::Config; pub use credential::Credential; +pub use delete::Delete; pub use eol_action::EolAction; pub use error::Error; pub use labels::Labels;