use crate::runtime::error::RuntimeError;
use super::{BundleAction, bundle};
pub(super) fn run_agentmux_up(arguments: &[String]) -> Result<(), RuntimeError> {
if arguments
.iter()
.any(|value| value == "--help" || value == "-h")
{
bundle::print_up_help();
return Ok(());
}
bundle::run_bundle_command(BundleAction::Up, arguments)
}