Move CreateReleaseOption to new tree

This commit is contained in:
2025-05-27 20:45:34 -05:00
parent 5f666a8179
commit 5db1134257
3 changed files with 10 additions and 12 deletions

View File

@@ -4,16 +4,6 @@ pub mod cli;
pub mod api;
pub mod structs;
#[derive(Debug, Serialize)]
pub struct CreateReleaseOption {
pub body: String,
pub draft: bool,
pub name: String,
pub prerelease: bool,
pub tag_name: String,
pub target_commitish: String,
}
#[derive(Debug, Deserialize, Serialize)]
pub struct ApiError {
message: String,