hyperlane-cli 0.1.10

A command-line tool for Hyperlane framework.
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(),
        }
    }
}