diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-25 21:02:26 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-07-25 22:17:23 +0100 |
| commit | 513fce723c7e37aa353844303f36022517f2db43 (patch) | |
| tree | 05e16bdd4789036af04b6c046823396f9f0faf22 /src/lib/mod.rs | |
| parent | e89dbc142f5a0a517f197562f5f228681d9aed47 (diff) | |
refactor: move `utils` and `list` helpers to lib
to enable forthcoming `ngit sync` cmd
Diffstat (limited to 'src/lib/mod.rs')
| -rw-r--r-- | src/lib/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/mod.rs b/src/lib/mod.rs index 7c7bd6a..076c2d2 100644 --- a/src/lib/mod.rs +++ b/src/lib/mod.rs | |||
| @@ -2,9 +2,11 @@ pub mod cli_interactor; | |||
| 2 | pub mod client; | 2 | pub mod client; |
| 3 | pub mod git; | 3 | pub mod git; |
| 4 | pub mod git_events; | 4 | pub mod git_events; |
| 5 | pub mod list; | ||
| 5 | pub mod login; | 6 | pub mod login; |
| 6 | pub mod repo_ref; | 7 | pub mod repo_ref; |
| 7 | pub mod repo_state; | 8 | pub mod repo_state; |
| 9 | pub mod utils; | ||
| 8 | 10 | ||
| 9 | use anyhow::{Result, anyhow}; | 11 | use anyhow::{Result, anyhow}; |
| 10 | use directories::ProjectDirs; | 12 | use directories::ProjectDirs; |