1
0
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:
Nick Craig-Wood
2013-07-11 17:37:33 +01:00
parent 90738f4081
commit a34bf2ae5e
5 changed files with 11 additions and 11 deletions

View File

@@ -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