1 2 3 4 5 6 7 8 9 10 11
//! Setup subcommand handler. use anyhow::Result; /// Handle `oxi setup [--reset]` pub async fn handle_setup(reset: bool) -> Result<()> { if reset { super::config::handle_config_reset(true)?; } crate::setup_wizard::run().await }