cod_cli/pull_request/
mod.rs

1pub mod comment;
2pub mod create;
3pub mod edit;
4pub mod list;
5pub mod view;
6
7use clap::Subcommand;
8
9/// Pull request subcommands
10#[derive(Subcommand, Debug)]
11pub enum PullRequestArgs {
12    List(list::ListPullRequestArgs),
13    Create(create::CreatePullRequestArgs),
14    Edit(edit::EditPullRequestArgs),
15    View(view::ViewPullRequestsArgs),
16    Comment(comment::CommentPullRequestArgs),
17}