aboutsummaryrefslogtreecommitdiff
path: root/weed/command/imports.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-08-08 01:21:42 -0700
committerChris Lu <chris.lu@gmail.com>2021-08-08 01:21:42 -0700
commit13e45e16054d16e8d8161a8ddb02fde3cd4cde8f (patch)
tree29d7b15932e10b0adafe2b27b3618e330805f75c /weed/command/imports.go
parent8f5170c1389f2d0bac75ca2f95a676a05283317b (diff)
downloadseaweedfs-13e45e16054d16e8d8161a8ddb02fde3cd4cde8f.tar.xz
seaweedfs-13e45e16054d16e8d8161a8ddb02fde3cd4cde8f.zip
filer.remote.sync can work now
Diffstat (limited to 'weed/command/imports.go')
-rw-r--r--weed/command/imports.go31
1 files changed, 31 insertions, 0 deletions
diff --git a/weed/command/imports.go b/weed/command/imports.go
new file mode 100644
index 000000000..d7ade1379
--- /dev/null
+++ b/weed/command/imports.go
@@ -0,0 +1,31 @@
+package command
+
+import (
+ _ "net/http/pprof"
+
+ _ "github.com/chrislusf/seaweedfs/weed/remote_storage/s3"
+
+ _ "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/localsink"
+ _ "github.com/chrislusf/seaweedfs/weed/replication/sink/s3sink"
+
+ _ "github.com/chrislusf/seaweedfs/weed/filer/cassandra"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/elastic/v7"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/etcd"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/hbase"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/leveldb"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/leveldb2"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/leveldb3"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/mongodb"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/mysql"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/mysql2"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/postgres"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/postgres2"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/redis"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/redis2"
+ _ "github.com/chrislusf/seaweedfs/weed/filer/sqlite"
+
+) \ No newline at end of file