forked from rclone/rclone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrclone.go
More file actions
18 lines (15 loc) · 390 Bytes
/
Copy pathrclone.go
File metadata and controls
18 lines (15 loc) · 390 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Sync files and directories to and from local and remote object stores
//
// Nick Craig-Wood <nick@craig-wood.com>
package main
import (
"log"
"github.com/ncw/rclone/cmd"
_ "github.com/ncw/rclone/cmd/all" // import all commands
_ "github.com/ncw/rclone/fs/all" // import all fs
)
func main() {
if err := cmd.Root.Execute(); err != nil {
log.Fatalf("Fatal error: %v", err)
}
}