nushell/src/commands/ls.rs

7 lines
178 B
Rust
Raw Normal View History

2019-05-10 18:59:12 +02:00
use crate::errors::ShellError;
use crate::prelude::*;
2019-05-10 18:59:12 +02:00
pub fn ls(args: CommandArgs) -> Result<OutputStream, ShellError> {
2019-08-07 19:49:11 +02:00
args.shell_manager.ls(args.call_info, args.input)
2019-05-10 18:59:12 +02:00
}