mirror of
				https://github.com/rclone/rclone.git
				synced 2025-10-30 23:17:59 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			391 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			391 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Sync files and directories to and from local and remote object stores
 | |
| //
 | |
| // Nick Craig-Wood <nick@craig-wood.com>
 | |
| 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()
 | |
| }
 |