mirror of
https://github.com/rclone/rclone
synced 2024-11-01 21:49:35 +01:00
4001e21624
Also update the exit code documentation describing that.
19 lines
390 B
Go
19 lines
390 B
Go
// 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)
|
|
}
|
|
}
|