hyperlane-cli 21.7.3

A command-line tool for Hyperlane framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/// Print help message
pub fn print_help() {
    log::info!("hyperlane-cli [COMMAND] [OPTIONS]");
    log::info!("");
    log::info!("Commands:");
    log::info!("  watch     Watch files and run cargo run using cargo-watch");
    log::info!("  new       Create a new project from template");
    log::info!(
        "  template  Generate template components (controller|domain|exception|mapper|model|repository|service|utils|view)"
    );
    log::info!("  -h, --help      Print this help message");
    log::info!("  -v, --version   Print version information");
    log::info!("");
    log::info!("New Options:");
    log::info!("  <PROJECT_NAME>  Name of the project to create");
}