2013-06-28 03:00:01 +08:00
|
|
|
// Sync files and directories to and from local and remote object stores
|
2013-06-28 02:51:03 +08:00
|
|
|
//
|
2012-11-19 01:32:31 +08:00
|
|
|
// Nick Craig-Wood <nick@craig-wood.com>
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-01-12 00:05:41 +08:00
|
|
|
_ "github.com/ncw/rclone/backend/all" // import all backends
|
2018-10-13 21:41:15 +08:00
|
|
|
"github.com/ncw/rclone/cmd"
|
|
|
|
_ "github.com/ncw/rclone/cmd/all" // import all commands
|
2012-11-19 01:32:31 +08:00
|
|
|
)
|
|
|
|
|
2016-08-03 06:56:20 +08:00
|
|
|
func main() {
|
2018-05-15 01:06:57 +08:00
|
|
|
cmd.Main()
|
2012-11-19 01:32:31 +08:00
|
|
|
}
|