diff --git a/mglib/storage.py b/mglib/storage.py index 1907290..09137a0 100644 --- a/mglib/storage.py +++ b/mglib/storage.py @@ -18,7 +18,7 @@ class Storage: on local host filesystem """ - def __init__(self, location=None): + def __init__(self, location=None, **kwargs): # by default, this will be something like # settings.MEDIA_ROOT self._location = location @@ -27,6 +27,12 @@ class Storage: def location(self): return self._location + def upload(self, doc_path, **kwargs): + pass + + def download(self, doc_path, **kwargs): + pass + def make_sure_path_exists(self, filepath): logger.debug(f"make_sure_path_exists {filepath}") dirname = os.path.dirname(filepath)