aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend/studip/studip.go9
1 files changed, 6 insertions, 3 deletions
diff --git a/backend/studip/studip.go b/backend/studip/studip.go
index 409f54e..0fbc164 100644
--- a/backend/studip/studip.go
+++ b/backend/studip/studip.go
@@ -91,9 +91,12 @@ type Options struct {
}
var (
- _ fs.Fs = &Fs{}
- _ fs.Object = &Object{}
- //_ fs.MimeTyper = &Object{}
+ _ fs.Fs = &Fs{}
+ _ fs.Object = &Object{}
+ _ fs.Purger = &Fs{}
+ _ fs.Mover = &Fs{}
+ _ fs.DirMover = &Fs{}
+ _ fs.MimeTyper = &Object{}
_ fs.Directory = &Directory{}
)