rclone/backend/usevfs/usevfs.go
Nick Craig-Wood 305183e6c5 archive backend - WIP FIXME
- Tests all passing.
- Zip and squashfs archivers working.
- Lazily loads and caches squashfs

Squashfs
- see archive.go for more FIXMEs
2024-01-03 18:25:17 +00:00

9 lines
275 B
Go

// Package all imports all the backends which use the VFS as part of
// their implementation these can't be imported by the VFS so need to
// be mentioned in here, not backend/all.
package all
import (
// Active file systems
_ "github.com/rclone/rclone/backend/archive"
)