aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: e31da8e382be9563276fc612e3542beea42908b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use reflectub::{git, github};

use std::path::Path;


fn main() {
    // let repos = github::fetch_repos().unwrap();
    //
    // dbg!(&repos);

    git::mirror(
        "https://github.com/teddywing/google-calendar-rsvp.git",
        Path::new("/tmp/grsvp"),
    ).unwrap();
}