diff options
| author | Michael Tews <michael@tews.dev> | 2026-03-31 06:14:40 +0200 |
|---|---|---|
| committer | Michael Tews <michael@tews.dev> | 2026-03-31 06:14:40 +0200 |
| commit | a9390e5ac3a12af13ceef97ee5161518a4b5ba38 (patch) | |
| tree | bda1692804bd8b53ea93cd750dd6129746333534 /backend/studip/studip.go | |
| parent | 21beb6a683652e4e8b72318826fcec19c5418b48 (diff) | |
chore: add validation that Fs implements specific interfacesfeature/purge
Diffstat (limited to 'backend/studip/studip.go')
| -rw-r--r-- | backend/studip/studip.go | 9 |
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{} ) |
