aboutsummaryrefslogtreecommitdiff
path: root/storage/filter/filter.go
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2018-01-15 07:39:49 +0100
committerLaria Carolin Chabowski <laria@laria.me>2018-01-15 07:39:49 +0100
commit62eef384330f652edd17732240ae0d82685c0914 (patch)
tree1ebf60a5baada7e5bd32c44ed0bafbe264958ca9 /storage/filter/filter.go
parentfc37a9d8e4e240a8fbf297919490c6df7e676d63 (diff)
downloadpetrific-62eef384330f652edd17732240ae0d82685c0914.tar.gz
petrific-62eef384330f652edd17732240ae0d82685c0914.tar.bz2
petrific-62eef384330f652edd17732240ae0d82685c0914.zip
Add command to restore index of a cloud storage
Diffstat (limited to 'storage/filter/filter.go')
-rw-r--r--storage/filter/filter.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/storage/filter/filter.go b/storage/filter/filter.go
index 1628c1e..2e60430 100644
--- a/storage/filter/filter.go
+++ b/storage/filter/filter.go
@@ -87,6 +87,10 @@ func (filt FilterStorage) List(typ objects.ObjectType) ([]objects.ObjectId, erro
return filt.Base.List(typ)
}
+func (filt FilterStorage) Subcmds() map[string]storage.StorageSubcmd {
+ return filt.Base.Subcmds()
+}
+
func (filt FilterStorage) Close() error {
return filt.Base.Close()
}