Remove IPFS. For #74

This commit is contained in:
Gabe Kangas
2020-07-19 21:15:53 -07:00
parent 4ec076cf34
commit b754ee01bf
9 changed files with 7 additions and 1496 deletions

View File

@@ -11,10 +11,7 @@ var (
)
func setupStorage() error {
if config.Config.IPFS.Enabled {
_storage = &storageproviders.IPFSStorage{}
usingExternalStorage = true
} else if config.Config.S3.Enabled {
if config.Config.S3.Enabled {
_storage = &storageproviders.S3Storage{}
usingExternalStorage = true
}