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