github.com/artpar/rclone@v1.67.3/backend/all/all.go (about) 1 // Package all imports all the backends 2 package all 3 4 import ( 5 // Active file systems 6 _ "github.com/artpar/rclone/backend/alias" 7 _ "github.com/artpar/rclone/backend/azureblob" 8 _ "github.com/artpar/rclone/backend/azurefiles" 9 _ "github.com/artpar/rclone/backend/b2" 10 _ "github.com/artpar/rclone/backend/box" 11 _ "github.com/artpar/rclone/backend/cache" 12 _ "github.com/artpar/rclone/backend/chunker" 13 _ "github.com/artpar/rclone/backend/combine" 14 _ "github.com/artpar/rclone/backend/compress" 15 _ "github.com/artpar/rclone/backend/crypt" 16 _ "github.com/artpar/rclone/backend/drive" 17 _ "github.com/artpar/rclone/backend/dropbox" 18 _ "github.com/artpar/rclone/backend/fichier" 19 _ "github.com/artpar/rclone/backend/filefabric" 20 _ "github.com/artpar/rclone/backend/ftp" 21 _ "github.com/artpar/rclone/backend/googlecloudstorage" 22 _ "github.com/artpar/rclone/backend/googlephotos" 23 _ "github.com/artpar/rclone/backend/hasher" 24 _ "github.com/artpar/rclone/backend/hdfs" 25 _ "github.com/artpar/rclone/backend/hidrive" 26 _ "github.com/artpar/rclone/backend/http" 27 _ "github.com/artpar/rclone/backend/imagekit" 28 _ "github.com/artpar/rclone/backend/internetarchive" 29 _ "github.com/artpar/rclone/backend/jottacloud" 30 _ "github.com/artpar/rclone/backend/koofr" 31 _ "github.com/artpar/rclone/backend/linkbox" 32 _ "github.com/artpar/rclone/backend/local" 33 _ "github.com/artpar/rclone/backend/mailru" 34 _ "github.com/artpar/rclone/backend/mega" 35 _ "github.com/artpar/rclone/backend/memory" 36 _ "github.com/artpar/rclone/backend/netstorage" 37 _ "github.com/artpar/rclone/backend/onedrive" 38 _ "github.com/artpar/rclone/backend/opendrive" 39 _ "github.com/artpar/rclone/backend/oracleobjectstorage" 40 _ "github.com/artpar/rclone/backend/pcloud" 41 _ "github.com/artpar/rclone/backend/pikpak" 42 _ "github.com/artpar/rclone/backend/premiumizeme" 43 _ "github.com/artpar/rclone/backend/protondrive" 44 _ "github.com/artpar/rclone/backend/putio" 45 _ "github.com/artpar/rclone/backend/qingstor" 46 _ "github.com/artpar/rclone/backend/quatrix" 47 _ "github.com/artpar/rclone/backend/s3" 48 _ "github.com/artpar/rclone/backend/seafile" 49 _ "github.com/artpar/rclone/backend/sftp" 50 _ "github.com/artpar/rclone/backend/sharefile" 51 _ "github.com/artpar/rclone/backend/sia" 52 _ "github.com/artpar/rclone/backend/smb" 53 _ "github.com/artpar/rclone/backend/storj" 54 _ "github.com/artpar/rclone/backend/sugarsync" 55 _ "github.com/artpar/rclone/backend/swift" 56 _ "github.com/artpar/rclone/backend/ulozto" 57 _ "github.com/artpar/rclone/backend/union" 58 _ "github.com/artpar/rclone/backend/uptobox" 59 _ "github.com/artpar/rclone/backend/webdav" 60 _ "github.com/artpar/rclone/backend/yandex" 61 _ "github.com/artpar/rclone/backend/zoho" 62 )