diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-02-14 08:41:02 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-02-14 08:47:27 +0000 |
| commit | c0847f928c32adb0b4dfc3b73ee77fa3cdb5ec21 (patch) | |
| tree | 07d89b9a5cb6770b25c22d35a13579df1278db0b /src/sub_commands/mod.rs | |
| parent | 1022344a0529b5f6b50f35d3030a528a1a5c6f91 (diff) | |
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
Diffstat (limited to 'src/sub_commands/mod.rs')
| -rw-r--r-- | src/sub_commands/mod.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sub_commands/mod.rs b/src/sub_commands/mod.rs index 8be9004..b16d50f 100644 --- a/src/sub_commands/mod.rs +++ b/src/sub_commands/mod.rs | |||
| @@ -1,5 +1,6 @@ | |||
| 1 | pub mod claim; | 1 | pub mod claim; |
| 2 | pub mod list; | ||
| 2 | pub mod login; | 3 | pub mod login; |
| 3 | pub mod prs; | ||
| 4 | pub mod pull; | 4 | pub mod pull; |
| 5 | pub mod push; | 5 | pub mod push; |
| 6 | pub mod send; | ||