diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2023-11-01 00:00:00 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2023-11-01 00:00:00 +0000 |
| commit | 82f1ba360b60c8339c7caea0dec7903ee5e764cd (patch) | |
| tree | 71ba2f4bf40cd155141ef000903df0fab45e7eaf | |
| parent | 36de3b05e61130f0c279419edeac8bba534a3791 (diff) | |
refactor(claim) move repo_ref.rs
file created in the wrong folder in error
| -rw-r--r-- | src/main.rs | 1 | ||||
| -rw-r--r-- | src/repo_ref.rs (renamed from src/sub_commands/repo_ref.rs) | 0 | ||||
| -rw-r--r-- | src/sub_commands/claim.rs | 2 | ||||
| -rw-r--r-- | src/sub_commands/mod.rs | 1 |
4 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 54ad748..805edd7 100644 --- a/src/main.rs +++ b/src/main.rs | |||
| @@ -10,6 +10,7 @@ mod config; | |||
| 10 | mod git; | 10 | mod git; |
| 11 | mod key_handling; | 11 | mod key_handling; |
| 12 | mod login; | 12 | mod login; |
| 13 | mod repo_ref; | ||
| 13 | mod sub_commands; | 14 | mod sub_commands; |
| 14 | 15 | ||
| 15 | #[derive(Parser)] | 16 | #[derive(Parser)] |
diff --git a/src/sub_commands/repo_ref.rs b/src/repo_ref.rs index 3b0b1b4..3b0b1b4 100644 --- a/src/sub_commands/repo_ref.rs +++ b/src/repo_ref.rs | |||
diff --git a/src/sub_commands/claim.rs b/src/sub_commands/claim.rs index 9a38f56..c0d26dd 100644 --- a/src/sub_commands/claim.rs +++ b/src/sub_commands/claim.rs | |||
| @@ -10,7 +10,7 @@ use crate::{ | |||
| 10 | client::Connect, | 10 | client::Connect, |
| 11 | git::{Repo, RepoActions}, | 11 | git::{Repo, RepoActions}, |
| 12 | login, | 12 | login, |
| 13 | sub_commands::repo_ref::RepoRef, | 13 | repo_ref::RepoRef, |
| 14 | Cli, | 14 | Cli, |
| 15 | }; | 15 | }; |
| 16 | 16 | ||
diff --git a/src/sub_commands/mod.rs b/src/sub_commands/mod.rs index 9e9f602..6e99ca5 100644 --- a/src/sub_commands/mod.rs +++ b/src/sub_commands/mod.rs | |||
| @@ -1,4 +1,3 @@ | |||
| 1 | pub mod claim; | 1 | pub mod claim; |
| 2 | pub mod login; | 2 | pub mod login; |
| 3 | pub mod prs; | 3 | pub mod prs; |
| 4 | pub mod repo_ref; | ||