diff options
Diffstat (limited to 'storage/local')
-rw-r--r-- | storage/local/local.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/storage/local/local.go b/storage/local/local.go index ae39eb5..8b48b2e 100644 --- a/storage/local/local.go +++ b/storage/local/local.go @@ -128,6 +128,10 @@ func (l LocalStorage) List(typ objects.ObjectType) ([]objects.ObjectId, error) { return l.index.List(typ), nil } +func (LocalStorage) Subcmds() map[string]storage.StorageSubcmd { + return make(map[string]storage.StorageSubcmd) +} + func (l LocalStorage) Close() error { f, err := os.Create(joinPath(l.Path, "index")) if err != nil { |