1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
use crate::*; impl NewProjectConfig { /// Create a new project configuration with default template /// /// # Arguments /// /// - `String`: Name of the project /// /// # Returns /// /// - `Self`: Configuration instance pub(crate) fn new(project_name: String) -> Self { Self { project_name, template_url: "https://github.com/hyperlane-dev/hyperlane-quick-start".to_string(), } } }