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