aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/module.go
blob: 2e469d375caa9f84a86e6c20b291996b9650aad9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package filesystem

import (
	"gopkg.in/src-d/go-git.v4/storage"
	"gopkg.in/src-d/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))
}