rclone/rclone.go

20 lines
405 B
Go
Raw Normal View History

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
//
// Nick Craig-Wood <nick@craig-wood.com>
package main
import (
"log"
2014-03-27 17:55:29 +01: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 16:25:48 +01:00
}
}