use crate::context::SproutContext; use alloc::rc::Rc; use anyhow::Result; use edera_sprout_config::actions::print::PrintConfiguration; use log::info; /// Executes the print action with the specified `configuration` inside the provided `context`. pub fn print(context: Rc, configuration: &PrintConfiguration) -> Result<()> { info!("{}", context.stamp(&configuration.text)); Ok(()) }