Skip to content

Commit

Permalink
fix: bad commit
Browse files Browse the repository at this point in the history
  • Loading branch information
8e8b2c committed Jun 24, 2024
1 parent 9db48b8 commit dd53e42
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/holoom_types/src/recipe.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use hdi::prelude::*;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};

#[derive(Clone, PartialEq, Serialize, Deserialize, Debug)]
Expand All @@ -8,14 +7,14 @@ pub enum RecipeArgumentType {
String,
}

#[derive(Clone, PartialEq, Serialize, Deserialize, Debug, JsonSchema)]
#[derive(Clone, PartialEq, Serialize, Deserialize, Debug)]
#[serde(tag = "type")]
pub enum JqInstructionArgumentNames {
Single { var_name: String },
List { var_names: Vec<String> },
}

#[derive(Clone, PartialEq, Serialize, Deserialize, Debug, JsonSchema)]
#[derive(Clone, PartialEq, Serialize, Deserialize, Debug)]
#[serde(tag = "type")]
pub enum RecipeInstruction {
Constant {
Expand Down

0 comments on commit dd53e42

Please sign in to comment.