mirror of
https://github.com/rclone/rclone
synced 2024-11-01 21:49:35 +01:00
15 lines
320 B
Go
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()
|
|
}
|