ready_set/builtins/help.rs
1//! `ready-set --help` / `ready-set help`.
2
3use std::ffi::OsString;
4
5use ready_set_sdk::ExitCode;
6
7use crate::env::EnvContract;
8
9const HELP_TEXT: &str = include_str!("help.txt");
10
11/// Print the meta help.
12pub fn run(_args: &[OsString], _contract: &EnvContract) -> ExitCode {
13 println!("{HELP_TEXT}");
14 ExitCode::Ok
15}