ready-set 0.1.0-alpha.1

ready, set, go: capability lifecycle orchestration for projects.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `ready-set --help` / `ready-set help`.

use std::ffi::OsString;

use ready_set_sdk::ExitCode;

use crate::env::EnvContract;

const HELP_TEXT: &str = include_str!("help.txt");

/// Print the meta help.
pub fn run(_args: &[OsString], _contract: &EnvContract) -> ExitCode {
    println!("{HELP_TEXT}");
    ExitCode::Ok
}