feat(gh-release): add delete module

- introduce delete module for handling deletion operations
This commit is contained in:
Jeremiah Russell
2025-10-09 17:48:05 +01:00
committed by Jeremiah Russell
parent 061048797c
commit 13a0b1496f

View File

@@ -6,6 +6,7 @@
mod config; mod config;
mod credential; mod credential;
mod delete;
mod eol_action; mod eol_action;
mod error; mod error;
mod labels; mod labels;
@@ -17,6 +18,7 @@ pub(crate) mod utils;
pub use config::Config; pub use config::Config;
pub use credential::Credential; pub use credential::Credential;
pub use delete::Delete;
pub use eol_action::EolAction; pub use eol_action::EolAction;
pub use error::Error; pub use error::Error;
pub use labels::Labels; pub use labels::Labels;