mirror of
https://github.com/rclone/rclone.git
synced 2025-01-03 12:59:32 +01:00
65d1e5d47e
This is so that the VFS tests can use the backends but not cause an import loop.
17 lines
480 B
Go
17 lines
480 B
Go
// Sync files and directories to and from local and remote object stores
|
|
//
|
|
// Nick Craig-Wood <nick@craig-wood.com>
|
|
package main
|
|
|
|
import (
|
|
_ "github.com/rclone/rclone/backend/all" // import all backends
|
|
_ "github.com/rclone/rclone/backend/usevfs" // import all backends which use the VFS
|
|
"github.com/rclone/rclone/cmd"
|
|
_ "github.com/rclone/rclone/cmd/all" // import all commands
|
|
_ "github.com/rclone/rclone/lib/plugin" // import plugins
|
|
)
|
|
|
|
func main() {
|
|
cmd.Main()
|
|
}
|