1
0
mirror of https://github.com/rclone/rclone.git synced 2025-01-19 04:47:54 +02:00

20 lines
405 B
Go
Raw Normal View History

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
//
// Nick Craig-Wood <nick@craig-wood.com>
package main
import (
"log"
2014-03-27 16:55:29 +00:00
"github.com/ncw/rclone/cmd"
_ "github.com/ncw/rclone/backend/all" // import all backends
_ "github.com/ncw/rclone/cmd/all" // import all commands
)
func main() {
if err := cmd.Root.Execute(); err != nil {
log.Fatalf("Fatal error: %v", err)
2016-01-09 15:25:48 +00:00
}
}