2013-06-27 20:00:01 +01:00
|
|
|
// Sync files and directories to and from local and remote object stores
|
2013-06-27 19:51:03 +01:00
|
|
|
//
|
2012-11-18 17:32:31 +00:00
|
|
|
// Nick Craig-Wood <nick@craig-wood.com>
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-07-28 18:47:38 +01: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 17:32:31 +00:00
|
|
|
)
|
|
|
|
|
2016-08-02 23:56:20 +01:00
|
|
|
func main() {
|
2018-05-14 18:06:57 +01:00
|
|
|
cmd.Main()
|
2012-11-18 17:32:31 +00:00
|
|
|
}
|