forked from TrueCloudLab/rclone
- Tests all passing. - Zip and squashfs archivers working. - Lazily loads and caches squashfs Squashfs - see archive.go for more FIXMEs
9 lines
275 B
Go
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"
|
|
)
|