From 949c6459aa7683453a7160423b689ceadb08954b Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Wed, 4 Sep 2024 08:04:48 +0100 Subject: 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 --- src/bin/ngit/sub_commands/mod.rs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/bin/ngit/sub_commands/mod.rs (limited to 'src/bin/ngit/sub_commands/mod.rs') diff --git a/src/bin/ngit/sub_commands/mod.rs b/src/bin/ngit/sub_commands/mod.rs new file mode 100644 index 0000000..29a60f9 --- /dev/null +++ b/src/bin/ngit/sub_commands/mod.rs @@ -0,0 +1,7 @@ +pub mod fetch; +pub mod init; +pub mod list; +pub mod login; +pub mod pull; +pub mod push; +pub mod send; -- cgit v1.2.3