chore(net/mushroom): Bootstrap project

This commit is contained in:
Vincent Ambo 2020-06-07 23:45:49 +01:00
parent a97094cc3e
commit 9b6afd090c
5 changed files with 223 additions and 0 deletions

5
net/mushroom/src/main.rs Normal file
View file

@ -0,0 +1,5 @@
use git2::Repository;
fn main() {
let repo = Repository::init("/depot").expect("should be able to open depot");
}