1
mirror of https://github.com/rclone/rclone synced 2024-09-15 11:38:53 +02:00
rclone/rclone.go
2018-10-13 22:47:12 +01:00

15 lines
320 B
Go

// Sync files and directories to and from local and remote object stores
//
// Nick Craig-Wood <nick@craig-wood.com>
package main
import (
_ "github.com/ncw/rclone/backend/all" // import all backends
"github.com/ncw/rclone/cmd"
_ "github.com/ncw/rclone/cmd/all" // import all commands
)
func main() {
cmd.Main()
}