SSS475
Results
1
comments of
SSS475
I was able to stream a repo into a tarball on disk utilizing the following. ```rust use http_body_util::BodyExt; let mut resp = octocrab .repos(REPO_OWNER, REPO_NAME) .download_tarball(Reference::Branch("BRANCH_NAME".to_owned())) .await?; let body =...