rclone.go 391 B

12345678910111213141516
  1. // Sync files and directories to and from local and remote object stores
  2. //
  3. // Nick Craig-Wood <nick@craig-wood.com>
  4. package main
  5. import (
  6. _ "github.com/rclone/rclone/backend/all" // import all backends
  7. "github.com/rclone/rclone/cmd"
  8. _ "github.com/rclone/rclone/cmd/all" // import all commands
  9. _ "github.com/rclone/rclone/lib/plugin" // import plugins
  10. )
  11. func main() {
  12. cmd.Main()
  13. }