Skip to main content

hyperlane_cli/help/
fn.rs

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