2013-06-27 21:00:01 +02:00
|
|
|
// Sync files and directories to and from local and remote object stores
|
2013-06-27 20:51:03 +02:00
|
|
|
//
|
2012-11-18 18:32:31 +01:00
|
|
|
// Nick Craig-Wood <nick@craig-wood.com>
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-07-28 19:47:38 +02:00
|
|
|
_ "github.com/rclone/rclone/backend/all" // import all backends
|
|
|
|
"github.com/rclone/rclone/cmd"
|
2019-09-23 02:41:02 +02:00
|
|
|
_ "github.com/rclone/rclone/cmd/all" // import all commands
|
|
|
|
_ "github.com/rclone/rclone/lib/plugin" // import plugins
|
2012-11-18 18:32:31 +01:00
|
|
|
)
|
|
|
|
|
2016-08-03 00:56:20 +02:00
|
|
|
func main() {
|
2018-05-14 19:06:57 +02:00
|
|
|
cmd.Main()
|
2012-11-18 18:32:31 +01:00
|
|
|
}
|