# encoding: utf-8 module GithubCLI class CLI desc "auth ", "Leverage Authorizations API" subcommand "auth", GithubCLI::Commands::Authorizations desc "blob ", "Leverage Blobs API" subcommand "blob", GithubCLI::Commands::Blobs desc "collab ", "Leverage Collaborators API" subcommand "collab", GithubCLI::Commands::Collaborators desc "commit ", "Leverage Commits API" subcommand "commit", GithubCLI::Commands::Commits desc "download ", "Leverage Downloads API" subcommand "download", GithubCLI::Commands::Downloads desc "email ", "Leverage Emails API" subcommand "email", GithubCLI::Commands::Emails desc "event ", "Leverage Events API" subcommand "event", GithubCLI::Commands::Events desc "fork ", "Leverage Forks API" subcommand "fork", GithubCLI::Commands::Forks desc "gist ", "Leverage Gists API" subcommand "gist", GithubCLI::Commands::Gists desc "hook ", "Leverage Hooks API" subcommand "hook", GithubCLI::Commands::Hooks desc "issue ", "Leverage Issues API" subcommand "issue", GithubCLI::Commands::Issues desc "key ", "Leverage Keys API" subcommand "key", GithubCLI::Commands::Keys desc "label ", "Leverage Labels API" subcommand "label", GithubCLI::Commands::Labels desc "milestone ", "Leverage Milestones API" subcommand "milestone", GithubCLI::Commands::Milestones desc "pull ", "Leverage Pull Requests API" subcommand "pull", GithubCLI::Commands::PullRequests desc "ref ", "Leverage References API" subcommand "ref", GithubCLI::Commands::References desc "repo ", "Leverage Repositories API" subcommand "repo", GithubCLI::Commands::Repositories desc "tag ", "Leverage Tags API" subcommand "tag", GithubCLI::Commands::Tags desc "tree ", "Leverage Trees API" subcommand "tree", GithubCLI::Commands::Trees desc "watch ", "Leverage Watching API" subcommand "watch", GithubCLI::Commands::Watching end # CLI end # GithubCLI