aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Tews <michael@tews.dev>2026-03-31 06:14:40 +0200
committerMichael Tews <michael@tews.dev>2026-03-31 06:14:40 +0200
commita9390e5ac3a12af13ceef97ee5161518a4b5ba38 (patch)
treebda1692804bd8b53ea93cd750dd6129746333534
parent21beb6a683652e4e8b72318826fcec19c5418b48 (diff)
chore: add validation that Fs implements specific interfacesfeature/purge
-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{}
)