#![forbid(unsafe_code)]
fn contains(values: &[&str], value: &str) -> bool {
values.contains(&value)
}
#[must_use]
pub fn cli_root_aliases() -> &'static [&'static str] {
super::model::CLI_ROOT_ALIASES
}
#[must_use]
pub fn cli_config_subcommands() -> &'static [&'static str] {
super::model::CLI_CONFIG_SUBCOMMANDS
}
#[must_use]
pub fn cli_plugins_subcommands() -> &'static [&'static str] {
super::model::CLI_PLUGINS_SUBCOMMANDS
}
#[must_use]
pub fn normalize_command_path(path: &[String]) -> Vec<String> {
match path {
[a] if contains(super::model::CLI_ROOT_ALIASES, a) => vec!["cli".to_string(), a.clone()],
[a, b] if a == "config" && contains(super::model::CLI_CONFIG_SUBCOMMANDS, b) => {
vec!["cli".to_string(), "config".to_string(), b.clone()]
}
[a, b] if a == "plugins" && contains(super::model::CLI_PLUGINS_SUBCOMMANDS, b) => {
vec!["cli".to_string(), "plugins".to_string(), b.clone()]
}
_ => path.to_vec(),
}
}
#[must_use]
pub fn is_known_route(path: &[String]) -> bool {
super::model::is_known_route(path)
}
#[must_use]
pub fn repl_reference_commands() -> &'static [&'static str] {
super::model::REPL_REFERENCE_COMMANDS
}