hyperlane-cli 0.1.10

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