diff options
author | Vincent Ambo <tazjin@google.com> | 2020-06-07T22·45+0100 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-06-07T23·31+0100 |
commit | 9b6afd090c0870c9ef194e3ecd264d582641a4a7 (patch) | |
tree | 7ff875fefb9defc4a63780400e2b981637a6d542 /net/mushroom/src/main.rs | |
parent | a97094cc3e2a452deb013c1d1bb68f2447d7040f (diff) |
chore(net/mushroom): Bootstrap project r/887
Diffstat (limited to 'net/mushroom/src/main.rs')
-rw-r--r-- | net/mushroom/src/main.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/mushroom/src/main.rs b/net/mushroom/src/main.rs new file mode 100644 index 000000000000..2c37981880c8 --- /dev/null +++ b/net/mushroom/src/main.rs @@ -0,0 +1,5 @@ +use git2::Repository; + +fn main() { + let repo = Repository::init("/depot").expect("should be able to open depot"); +} |