1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::shared::prelude::FoundConfig; use anyhow::Result; use clap::Args; #[derive(Debug, Args)] pub struct DoctorInitArgs { /// Location to write the default init directory. output: String, } pub async fn doctor_init(_found_config: &FoundConfig, _args: &DoctorInitArgs) -> Result<()> { Ok(()) }