From c0847f928c32adb0b4dfc3b73ee77fa3cdb5ec21 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 14 Feb 2024 08:41:02 +0000 Subject: feat!: move `prs create`>`send`, `prs list`>`list` remove unnecessary hierachy of `prs` which is also a troublesome term replace the concept of `create` which aligns more to the PR github model to `send` which aligns more with the git patch model --- src/sub_commands/push.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sub_commands/push.rs') diff --git a/src/sub_commands/push.rs b/src/sub_commands/push.rs index eb42699..cc1f480 100644 --- a/src/sub_commands/push.rs +++ b/src/sub_commands/push.rs @@ -10,12 +10,12 @@ use crate::{ git::{str_to_sha1, Repo, RepoActions}, login, repo_ref::{self, RepoRef}, - sub_commands::prs::{ - create::{event_to_cover_letter, generate_patch_event, send_events}, + sub_commands::{ list::{ find_commits_for_pr_event, find_pr_events, get_most_recent_patch_with_ancestors, tag_value, }, + send::{event_to_cover_letter, generate_patch_event, send_events}, }, Cli, }; -- cgit v1.2.3