Permalink
Cannot retrieve contributors at this time
15 lines (13 sloc)
391 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sync files and directories to and from local and remote object stores | |
// | |
// Nick Craig-Wood <[email protected]> | |
package main | |
import ( | |
_ "github.com/rclone/rclone/backend/all" // import all backends | |
"github.com/rclone/rclone/cmd" | |
_ "github.com/rclone/rclone/cmd/all" // import all commands | |
_ "github.com/rclone/rclone/lib/plugin" // import plugins | |
) | |
func main() { | |
cmd.Main() | |
} |