github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/rclone.go (about)

     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  
     6  import (
     7  	_ "github.com/rclone/rclone/backend/all" // import all backends
     8  	"github.com/rclone/rclone/cmd"
     9  	_ "github.com/rclone/rclone/cmd/all"    // import all commands
    10  	_ "github.com/rclone/rclone/lib/plugin" // import plugins
    11  )
    12  
    13  func main() {
    14  	cmd.Main()
    15  }