Skip to main content

greentic_dev/cmd/
tools.rs

1use anyhow::Result;
2
3use crate::passthrough::install_all_delegated_tools;
4
5pub fn install(latest: bool, locale: &str) -> Result<()> {
6    install_all_delegated_tools(latest, locale)
7}