nushell/src/commands/next.rs
Jonathan Turner c231dd32cd
Multi shells (#254)
Add multi-shells
2019-08-08 05:49:11 +12:00

8 lines
245 B
Rust

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())
}