aboutsummaryrefslogtreecommitdiff
path: root/weed/command/filer_replication.go
diff options
context:
space:
mode:
authorj.laycock <joseph.laycock@4sightimaging.com>2019-09-02 11:28:40 +0100
committerj.laycock <joseph.laycock@4sightimaging.com>2019-09-02 11:28:40 +0100
commit595a1beff00196c9b207787833578ba1de1847e5 (patch)
tree15b1bf2740a7718a1ff4ca13a0e6fa51ea6c0623 /weed/command/filer_replication.go
parent1e62a2b233458262c875dcf182309cc2425fe5a8 (diff)
downloadseaweedfs-595a1beff00196c9b207787833578ba1de1847e5.tar.xz
seaweedfs-595a1beff00196c9b207787833578ba1de1847e5.zip
Swap imports to use joeslay
Diffstat (limited to 'weed/command/filer_replication.go')
-rw-r--r--weed/command/filer_replication.go20
1 files changed, 10 insertions, 10 deletions
diff --git a/weed/command/filer_replication.go b/weed/command/filer_replication.go
index c6e7f5dba..1040e2174 100644
--- a/weed/command/filer_replication.go
+++ b/weed/command/filer_replication.go
@@ -4,16 +4,16 @@ import (
"context"
"strings"
- "github.com/chrislusf/seaweedfs/weed/glog"
- "github.com/chrislusf/seaweedfs/weed/replication"
- "github.com/chrislusf/seaweedfs/weed/replication/sink"
- _ "github.com/chrislusf/seaweedfs/weed/replication/sink/azuresink"
- _ "github.com/chrislusf/seaweedfs/weed/replication/sink/b2sink"
- _ "github.com/chrislusf/seaweedfs/weed/replication/sink/filersink"
- _ "github.com/chrislusf/seaweedfs/weed/replication/sink/gcssink"
- _ "github.com/chrislusf/seaweedfs/weed/replication/sink/s3sink"
- "github.com/chrislusf/seaweedfs/weed/replication/sub"
- "github.com/chrislusf/seaweedfs/weed/util"
+ "github.com/joeslay/seaweedfs/weed/glog"
+ "github.com/joeslay/seaweedfs/weed/replication"
+ "github.com/joeslay/seaweedfs/weed/replication/sink"
+ _ "github.com/joeslay/seaweedfs/weed/replication/sink/azuresink"
+ _ "github.com/joeslay/seaweedfs/weed/replication/sink/b2sink"
+ _ "github.com/joeslay/seaweedfs/weed/replication/sink/filersink"
+ _ "github.com/joeslay/seaweedfs/weed/replication/sink/gcssink"
+ _ "github.com/joeslay/seaweedfs/weed/replication/sink/s3sink"
+ "github.com/joeslay/seaweedfs/weed/replication/sub"
+ "github.com/joeslay/seaweedfs/weed/util"
"github.com/spf13/viper"
)