blob: 2e469d375caa9f84a86e6c20b291996b9650aad9 (
plain) (
tree)
|
|
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))
}
|