nushell/src/commands/next.rs
Jonathan Turner aadacc2d36 Merge master
2019-08-09 16:51:21 +12:00

8 lines
274 B
Rust

use crate::commands::command::CommandAction;
use crate::errors::ShellError;
use crate::prelude::*;
pub fn next(_args: CommandArgs, _registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
Ok(vec![Ok(ReturnSuccess::Action(CommandAction::NextShell))].into())
}