nushell/src/commands/next.rs

8 lines
245 B
Rust
Raw Normal View History

2019-08-07 17:49:11 +00:00
use crate::commands::command::CommandAction;
use crate::errors::ShellError;
use crate::prelude::*;
pub fn next(_args: CommandArgs) -> Result<OutputStream, ShellError> {
Ok(vec![Ok(ReturnSuccess::Action(CommandAction::NextShell))].into())
}