diff --git a/crates/api/src/dto/workflow.rs b/crates/api/src/dto/workflow.rs index bda99cd..5f6866b 100644 --- a/crates/api/src/dto/workflow.rs +++ b/crates/api/src/dto/workflow.rs @@ -48,7 +48,6 @@ pub struct SaveWorkflowFileRequest { /// Tags for categorization #[schema(example = json!(["deployment", "automation"]))] pub tags: Option>, - } /// Request DTO for creating a new workflow @@ -93,7 +92,6 @@ pub struct CreateWorkflowRequest { /// Tags for categorization and search #[schema(example = json!(["incident", "slack", "approval"]))] pub tags: Option>, - } /// Request DTO for updating a workflow @@ -128,7 +126,6 @@ pub struct UpdateWorkflowRequest { /// Tags #[schema(example = json!(["incident", "slack", "approval", "automation"]))] pub tags: Option>, - } /// Response DTO for workflow information diff --git a/crates/cli/src/commands/workflow.rs b/crates/cli/src/commands/workflow.rs index 3f40a9a..3491f9e 100644 --- a/crates/cli/src/commands/workflow.rs +++ b/crates/cli/src/commands/workflow.rs @@ -85,7 +85,6 @@ struct ActionYaml { /// Tags #[serde(default)] tags: Option>, - } // ── API DTOs ──────────────────────────────────────────────────────────── @@ -399,14 +398,7 @@ async fn handle_list( let mut table = output::create_table(); output::add_header( &mut table, - vec![ - "ID", - "Reference", - "Pack", - "Label", - "Version", - "Tags", - ], + vec!["ID", "Reference", "Pack", "Label", "Version", "Tags"], ); for wf in &workflows {