The Wayback Machine - https://web.archive.org/web/20211204165242/https://github.com/rclone/rclone/blob/master/rclone.go
Skip to content
Permalink
master
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
// Sync files and directories to and from local and remote object stores
//
// Nick Craig-Wood <[email protected]>
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()
}