Recipe: Operator is optional

This commit is contained in:
Sebastian Kuzminsky 2025-01-17 20:44:58 -07:00
parent af053c33b7
commit 4890611460

View file

@ -42,7 +42,7 @@ pub struct Operator {
#[derive(Debug, serde::Deserialize)]
pub struct Dependencies {
tools: Vec<String>,
operator: Operator,
operator: Option<Operator>,
}
#[derive(Debug, serde::Deserialize)]