From c679e02c73ce865e06e0e9642c4c4949ca20e62c Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Fri, 3 Jun 2022 17:32:02 +0200 Subject: [PATCH] updated storages init --- storages/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/storages/__init__.py b/storages/__init__.py index 8b39d7d..773c0b3 100644 --- a/storages/__init__.py +++ b/storages/__init__.py @@ -1,4 +1,5 @@ # we need to explicitly expose the available imports here -from .base_storage import * -from .local_storage import * -from .s3_storage import * \ No newline at end of file +from .base_storage import Storage +from .local_storage import LocalStorage +from .s3_storage import S3Config, S3Storage +from .gd_storage import GDConfig, GDStorage \ No newline at end of file