pub trait ProjectInitializer {
// Required method
fn init_project(
&self,
name: Option<String>,
template: Option<String>,
here: bool,
) -> Result<InitResult>;
}pub trait ProjectInitializer {
// Required method
fn init_project(
&self,
name: Option<String>,
template: Option<String>,
here: bool,
) -> Result<InitResult>;
}