aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index ea540e6..994c86f 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,8 +1,10 @@
-use reflectub::github;
+use reflectub::{git, github};
fn main() {
- let repos = github::fetch_repos().unwrap();
+ // let repos = github::fetch_repos().unwrap();
+ //
+ // dbg!(&repos);
- dbg!(&repos);
+ git::mirror().unwrap();
}