1 2 3 4 5 6 7 8
use anyhow::Result; pub async fn sync() -> Result<()> { super::install::install().await?; super::clean::clean()?; super::update::update_all().await?; Ok(()) }