diff options
author | Rosyid Haryadi <rosyid_haryadi@protonmail.com> | 2025-03-16 02:34:56 +0700 |
---|---|---|
committer | Rosyid Haryadi <rosyid_haryadi@protonmail.com> | 2025-03-16 02:34:56 +0700 |
commit | 3e8903a54667f24dd8e7f1b74d97ee772c032e64 (patch) | |
tree | 6206852a6d8f89e114ff294ab5252273ebee358e /src/main.rs | |
parent | 63fe218d4ea0d52f92af4bde33d96ba3804b50aa (diff) |
upd: git object & refactor: core -> repository
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 8958192..a1c911c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,9 +1,10 @@ -mod core; +mod repository; mod utilities; +mod object; use std::path::PathBuf; use clap::{Parser, Subcommand}; -use crate::core::GitRepository; +use crate::repository::GitRepository; #[derive(Parser)] #[command(version, about, long_about = None)] |