mirror of
https://github.com/nushell/nushell
synced 2024-12-28 22:13:10 +00:00
7 lines
274 B
Rust
7 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())
|
|
}
|