use nu_protocol::ast::Call; use nu_protocol::engine::{Command, EvaluationContext}; use nu_protocol::{PipelineData, Signature, SyntaxShape, Value}; #[derive(Clone)] pub struct Def; impl Command for Def { fn name(&self) -> &str { "def" } fn usage(&self) -> &str { "Define a custom command" } fn signature(&self) -> nu_protocol::Signature { Signature::build("def") .required("def_name", SyntaxShape::String, "definition name") .required("params", SyntaxShape::Signature, "parameters") .required( "block", SyntaxShape::Block(Some(vec![])), "body of the definition", ) } fn run( &self, _context: &EvaluationContext, call: &Call, _input: PipelineData, ) -> Result { Ok(PipelineData::new()) } }