diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 994c86f..e31da8e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,15 @@ use reflectub::{git, github}; +use std::path::Path; + fn main() { // let repos = github::fetch_repos().unwrap(); // // dbg!(&repos); - git::mirror().unwrap(); + git::mirror( + "https://github.com/teddywing/google-calendar-rsvp.git", + Path::new("/tmp/grsvp"), + ).unwrap(); } |