pub mod compiler;
pub mod loader;
pub mod validator;
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Recipe {
pub name: String,
pub match_command: String,
pub lens: Vec<String>,
pub budget_tokens: Option<usize>,
pub strip_lines: Option<Vec<String>>,
pub on_empty: Option<String>,
}