Swap imports to use joeslay

This commit is contained in:
j.laycock
2019-09-02 11:28:40 +01:00
parent 1e62a2b233
commit 595a1beff0
238 changed files with 723 additions and 723 deletions

View File

@@ -7,29 +7,29 @@ import (
"os"
"time"
"github.com/chrislusf/seaweedfs/weed/operation"
"github.com/chrislusf/seaweedfs/weed/pb/master_pb"
"github.com/chrislusf/seaweedfs/weed/stats"
"github.com/chrislusf/seaweedfs/weed/util"
"github.com/joeslay/seaweedfs/weed/operation"
"github.com/joeslay/seaweedfs/weed/pb/master_pb"
"github.com/joeslay/seaweedfs/weed/stats"
"github.com/joeslay/seaweedfs/weed/util"
"google.golang.org/grpc"
"github.com/chrislusf/seaweedfs/weed/filer2"
_ "github.com/chrislusf/seaweedfs/weed/filer2/cassandra"
_ "github.com/chrislusf/seaweedfs/weed/filer2/etcd"
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb"
_ "github.com/chrislusf/seaweedfs/weed/filer2/leveldb2"
_ "github.com/chrislusf/seaweedfs/weed/filer2/memdb"
_ "github.com/chrislusf/seaweedfs/weed/filer2/mysql"
_ "github.com/chrislusf/seaweedfs/weed/filer2/postgres"
_ "github.com/chrislusf/seaweedfs/weed/filer2/redis"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/notification"
_ "github.com/chrislusf/seaweedfs/weed/notification/aws_sqs"
_ "github.com/chrislusf/seaweedfs/weed/notification/gocdk_pub_sub"
_ "github.com/chrislusf/seaweedfs/weed/notification/google_pub_sub"
_ "github.com/chrislusf/seaweedfs/weed/notification/kafka"
_ "github.com/chrislusf/seaweedfs/weed/notification/log"
"github.com/chrislusf/seaweedfs/weed/security"
"github.com/joeslay/seaweedfs/weed/filer2"
_ "github.com/joeslay/seaweedfs/weed/filer2/cassandra"
_ "github.com/joeslay/seaweedfs/weed/filer2/etcd"
_ "github.com/joeslay/seaweedfs/weed/filer2/leveldb"
_ "github.com/joeslay/seaweedfs/weed/filer2/leveldb2"
_ "github.com/joeslay/seaweedfs/weed/filer2/memdb"
_ "github.com/joeslay/seaweedfs/weed/filer2/mysql"
_ "github.com/joeslay/seaweedfs/weed/filer2/postgres"
_ "github.com/joeslay/seaweedfs/weed/filer2/redis"
"github.com/joeslay/seaweedfs/weed/glog"
"github.com/joeslay/seaweedfs/weed/notification"
_ "github.com/joeslay/seaweedfs/weed/notification/aws_sqs"
_ "github.com/joeslay/seaweedfs/weed/notification/gocdk_pub_sub"
_ "github.com/joeslay/seaweedfs/weed/notification/google_pub_sub"
_ "github.com/joeslay/seaweedfs/weed/notification/kafka"
_ "github.com/joeslay/seaweedfs/weed/notification/log"
"github.com/joeslay/seaweedfs/weed/security"
"github.com/spf13/viper"
)