mirror of
https://github.com/rclone/rclone.git
synced 2025-12-06 00:03:32 +00:00
Make imports absolute and use own copy of goamz pending patch inclusion
This commit is contained in:
10
rclone.go
10
rclone.go
@@ -4,9 +4,9 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"./fs"
|
||||
"flag"
|
||||
"fmt"
|
||||
"github.com/ncw/rclone/fs"
|
||||
"log"
|
||||
"os"
|
||||
"runtime"
|
||||
@@ -15,10 +15,10 @@ import (
|
||||
"sync"
|
||||
"time"
|
||||
// Active file systems
|
||||
_ "./drive"
|
||||
_ "./local"
|
||||
_ "./s3"
|
||||
_ "./swift"
|
||||
_ "github.com/ncw/rclone/drive"
|
||||
_ "github.com/ncw/rclone/local"
|
||||
_ "github.com/ncw/rclone/s3"
|
||||
_ "github.com/ncw/rclone/swift"
|
||||
)
|
||||
|
||||
// Globals
|
||||
|
||||
Reference in New Issue
Block a user