In the old version of the CLI, we had an init.go where the commands would be initiated on start of the CLI. /// Interact with 🚅 Railway via CLI #[derive(Parser)] #[clap(author, version, about, long_about = None)] #[clap(propagate_version = true)] pub struct Args { #[clap(subcommand)] command: Commands, /// Output in JSON format #[clap(global = true, long)] json: bool, } // Generates the commands based on the modules in the commands directory // Specify the modules you want to include in the commands_enum! In this case, we set the global CLI help text to “Interact with 🚅 Railway via CLI."