mirror of
https://github.com/nushell/nushell.git
synced 2024-12-12 10:10:51 +01:00
c231dd32cd
Add multi-shells
8 lines
245 B
Rust
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())
|
|
}
|