git-async 0.1.1

An async-first library for reading git repositories
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::{
    file_system::FileSystem,
    test::directory::{TestRepoDirectory, TestRepoFile},
};

pub struct TestFileSystem;
impl FileSystem for TestFileSystem {
    type File = TestRepoFile;
    type Directory = TestRepoDirectory;
}