github.com/ncw/rclone@v1.48.1-0.20190724201158-a35aa1360e3e/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/ncw/rclone/backend/all" // import all backends
     8  	"github.com/ncw/rclone/cmd"
     9  	_ "github.com/ncw/rclone/cmd/all" // import all commands
    10  )
    11  
    12  func main() {
    13  	cmd.Main()
    14  }