1/// Configuration for creating a new project 2#[derive(Clone, Debug)] 3pub struct NewProjectConfig { 4 /// Name of the project to create 5 pub project_name: String, 6 /// URL of the template repository 7 pub template_url: String, 8}