imports.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. package command
  2. import (
  3. _ "net/http/pprof"
  4. _ "github.com/seaweedfs/seaweedfs/weed/remote_storage/azure"
  5. _ "github.com/seaweedfs/seaweedfs/weed/remote_storage/gcs"
  6. _ "github.com/seaweedfs/seaweedfs/weed/remote_storage/s3"
  7. _ "github.com/seaweedfs/seaweedfs/weed/replication/sink/azuresink"
  8. _ "github.com/seaweedfs/seaweedfs/weed/replication/sink/b2sink"
  9. _ "github.com/seaweedfs/seaweedfs/weed/replication/sink/filersink"
  10. _ "github.com/seaweedfs/seaweedfs/weed/replication/sink/gcssink"
  11. _ "github.com/seaweedfs/seaweedfs/weed/replication/sink/localsink"
  12. _ "github.com/seaweedfs/seaweedfs/weed/replication/sink/s3sink"
  13. _ "github.com/seaweedfs/seaweedfs/weed/filer/arangodb"
  14. _ "github.com/seaweedfs/seaweedfs/weed/filer/cassandra"
  15. _ "github.com/seaweedfs/seaweedfs/weed/filer/elastic/v7"
  16. _ "github.com/seaweedfs/seaweedfs/weed/filer/etcd"
  17. _ "github.com/seaweedfs/seaweedfs/weed/filer/hbase"
  18. _ "github.com/seaweedfs/seaweedfs/weed/filer/leveldb"
  19. _ "github.com/seaweedfs/seaweedfs/weed/filer/leveldb2"
  20. _ "github.com/seaweedfs/seaweedfs/weed/filer/leveldb3"
  21. _ "github.com/seaweedfs/seaweedfs/weed/filer/mongodb"
  22. _ "github.com/seaweedfs/seaweedfs/weed/filer/mysql"
  23. _ "github.com/seaweedfs/seaweedfs/weed/filer/mysql2"
  24. _ "github.com/seaweedfs/seaweedfs/weed/filer/postgres"
  25. _ "github.com/seaweedfs/seaweedfs/weed/filer/postgres2"
  26. _ "github.com/seaweedfs/seaweedfs/weed/filer/redis"
  27. _ "github.com/seaweedfs/seaweedfs/weed/filer/redis2"
  28. _ "github.com/seaweedfs/seaweedfs/weed/filer/redis3"
  29. _ "github.com/seaweedfs/seaweedfs/weed/filer/sqlite"
  30. _ "github.com/seaweedfs/seaweedfs/weed/filer/tikv"
  31. _ "github.com/seaweedfs/seaweedfs/weed/filer/ydb"
  32. )