1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
pub(crate) mod clear; mod pop_stack; mod push_stack; use crate::utils::pckg; use duckscript::types::command::Commands; use duckscript::types::error::ScriptError; static PACKAGE: &str = "scope"; pub(crate) fn load(commands: &mut Commands, parent: &str) -> Result<(), ScriptError> { let package = pckg::concat(parent, PACKAGE); commands.set(clear::create(&package))?; commands.set(pop_stack::create(&package))?; commands.set(push_stack::create(&package))?; Ok(()) }