//! Built-in subcommands of the `ready-set` dispatcher.
pubmodgo;pubmodhelp;pubmodlist;pubmodready;pubmodset;pubmodversion;useready_set_sdk::ExitCode;usecrate::env::EnvContract;/// Type of a built-in handler. Returns the requested process exit code.
pubtypeBuiltinFn=fn(&[std::ffi::OsString],&EnvContract)-> ExitCode;/// Look up a built-in by subcommand name.
#[must_use]pubfnroute(name:&str)->Option<BuiltinFn>{match name {"go"=>Some(go::run),"help"=>Some(help::run),"version"=>Some(version::run),"list"=>Some(list::run),"ready"=>Some(ready::run),"set"=>Some(set::run),_=>None,}}