gitload 0.1.3

download any single file or dir from github
Documentation
1
2
3
4
5
6
7
8
9
10
use anyhow::Result;
use gitload::DownloaderBuilder;

#[tokio::main]
async fn main() -> Result<()> {
    let downloader = DownloaderBuilder::new("levinion", "dotfiles", "nvim-dotfile")
        .local_path("./src")
        .build();
    downloader.download().await
}