use crate::commands::WholeStreamCommand; use crate::errors::ShellError; use crate::prelude::*; use std::path::PathBuf; pub struct LS; #[derive(Deserialize)] pub struct LsArgs { path: Option>, } impl WholeStreamCommand for LS { fn name(&self) -> &str { "ls" } fn signature(&self) -> Signature { Signature::build("ls").optional("path", SyntaxShape::Pattern) } fn usage(&self) -> &str { "View the contents of the current or given path." } fn run( &self, args: CommandArgs, registry: &CommandRegistry, ) -> Result { args.process(registry, ls)?.run() // ls(args, registry) } } fn ls(LsArgs { path }: LsArgs, context: RunnableContext) -> Result { context.shell_manager.ls(path, context.name) }