mirror of
https://github.com/rclone/rclone
synced 2024-10-31 20:16:42 +01:00
44b603d2bd
This enables loading plugins from RCLONE_PLUGIN_PATH if set.
16 lines
391 B
Go
16 lines
391 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/cmd"
|
|
_ "github.com/rclone/rclone/cmd/all" // import all commands
|
|
_ "github.com/rclone/rclone/lib/plugin" // import plugins
|
|
)
|
|
|
|
func main() {
|
|
cmd.Main()
|
|
}
|