chore(code): move crates/sprout to crates/boot and name it edera-sprout-boot

This commit is contained in:
2025-11-03 22:52:54 -05:00
parent 9a803ad355
commit 532fb38d5a
36 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
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<SproutContext>, configuration: &PrintConfiguration) -> Result<()> {
info!("{}", context.stamp(&configuration.text));
Ok(())
}