summary refs log tree commit diff
path: root/LibGitTest/FileRepoSource.cs
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-06-05 03:25:53 +0200
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-06-05 03:25:53 +0200
commit51d820e22a4517dbb06d38a4f07f7c48522ef811 (patch)
tree4a7749cf77223dff2414fd4b73cb17df43d7449e /LibGitTest/FileRepoSource.cs
downloadGitTools-master.tar.xz
Initial commit HEAD master
Diffstat (limited to 'LibGitTest/FileRepoSource.cs')
-rw-r--r--LibGitTest/FileRepoSource.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/LibGitTest/FileRepoSource.cs b/LibGitTest/FileRepoSource.cs
new file mode 100644
index 0000000..09ec836
--- /dev/null
+++ b/LibGitTest/FileRepoSource.cs
@@ -0,0 +1,18 @@
+using LibGit.Interfaces;
+
+namespace LibGitTest;
+
+public class FileRepoSource : IRepoSource
+{
+    public FileRepoSource(string basePath)
+    {
+        BasePath = basePath;
+    }
+
+    public string BasePath { get; set; }
+
+    public async Task<Stream> GetFileStream(string path)
+    {
+        return File.OpenRead(Path.Join(BasePath, path));
+    }
+}
\ No newline at end of file