mirror of
https://github.com/nushell/nushell
synced 2025-01-25 03:15:25 +00:00
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())
|
||
|
}
|