Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| // 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() | |
| } |

