(dotGitFs, commonDotGitFs billy.Filesystem)
| 17 | } |
| 18 | |
| 19 | func NewRepositoryFilesystem(dotGitFs, commonDotGitFs billy.Filesystem) *RepositoryFilesystem { |
| 20 | return &RepositoryFilesystem{ |
| 21 | dotGitFs: dotGitFs, |
| 22 | commonDotGitFs: commonDotGitFs, |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | func (fs *RepositoryFilesystem) mapToRepositoryFsByPath(path string) billy.Filesystem { |
| 27 | // Nothing to decide if commondir not defined |
no outgoing calls
searching dependent graphs…