aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/module.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage/filesystem/module.go')
-rw-r--r--storage/filesystem/module.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/storage/filesystem/module.go b/storage/filesystem/module.go
new file mode 100644
index 0000000..e8985d8
--- /dev/null
+++ b/storage/filesystem/module.go
@@ -0,0 +1,14 @@
+package filesystem
+
+import (
+ "srcd.works/go-git.v4/storage"
+ "srcd.works/go-git.v4/storage/filesystem/internal/dotgit"
+)
+
+type ModuleStorage struct {
+ dir *dotgit.DotGit
+}
+
+func (s *ModuleStorage) Module(name string) (storage.Storer, error) {
+ return NewStorage(s.dir.Module(name))
+}