mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-08 03:18:28 +03:00
8 lines
221 B
Python
8 lines
221 B
Python
""" This module contains the storage classes for the auto-archiver.
|
|
|
|
"""
|
|
from .storage import Storage
|
|
from .s3 import S3Storage
|
|
from .local import LocalStorage
|
|
from .gd import GDriveStorage
|
|
from .atlos import AtlosStorage |