diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2024-09-04 08:04:48 +0100 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2024-09-04 13:30:59 +0100 |
| commit | 949c6459aa7683453a7160423b689ceadb08954b (patch) | |
| tree | 230c26ecb11b99916e5570e548673eb09ecf0a36 /src/lib/mod.rs | |
| parent | a825311f2c55661aaab3a163bda9109295c96044 (diff) | |
refactor: organise into lib and bin structure
the make the code more readable
this commit just moves the files, the next commit should fix the imports
Diffstat (limited to 'src/lib/mod.rs')
| -rw-r--r-- | src/lib/mod.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/mod.rs b/src/lib/mod.rs new file mode 100644 index 0000000..61dfc49 --- /dev/null +++ b/src/lib/mod.rs | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | mod cli_interactor; | ||
| 2 | mod client; | ||
| 3 | mod config; | ||
| 4 | mod git; | ||
| 5 | mod key_handling; | ||
| 6 | mod login; | ||
| 7 | mod repo_ref; | ||
| 8 | mod repo_state; | ||
| 9 | |||
| 10 | pub use client; | ||
| 11 | pub use config; | ||
| 12 | pub use git; | ||
| 13 | pub use key_handling; | ||
| 14 | pub use login; | ||
| 15 | pub use repo_ref; | ||
| 16 | pub use repo_state; | ||