diff options
Diffstat (limited to 'storage/filesystem/storage.go')
-rw-r--r-- | storage/filesystem/storage.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/storage/filesystem/storage.go b/storage/filesystem/storage.go index 7021d3a..27dd07f 100644 --- a/storage/filesystem/storage.go +++ b/storage/filesystem/storage.go @@ -16,6 +16,7 @@ type Storage struct { IndexStorage ShallowStorage ConfigStorage + ModuleStorage } // NewStorage returns a new Storage backed by a given `fs.Filesystem` @@ -32,5 +33,6 @@ func NewStorage(fs billy.Filesystem) (*Storage, error) { IndexStorage: IndexStorage{dir: dir}, ShallowStorage: ShallowStorage{dir: dir}, ConfigStorage: ConfigStorage{dir: dir}, + ModuleStorage: ModuleStorage{dir: dir}, }, nil } |