use crate::context::SproutContext; use anyhow::Result; use serde::{Deserialize, Serialize}; use std::rc::Rc; /// The configuration of the print action. #[derive(Serialize, Deserialize, Default, Clone)] pub struct PrintConfiguration { /// The text to print to the console. #[serde(default)] pub text: String, } /// Executes the print action with the specified `configuration` inside the provided `context`. pub fn print(context: Rc, configuration: &PrintConfiguration) -> Result<()> { println!("{}", context.stamp(&configuration.text)); Ok(()) }