Files
g0v0-server/app/storage/__init__.py
2025-08-12 03:58:06 +00:00

14 lines
327 B
Python

from __future__ import annotations
from .aws_s3 import AWSS3StorageService
from .base import StorageService
from .cloudflare_r2 import CloudflareR2StorageService
from .local import LocalStorageService
__all__ = [
"AWSS3StorageService",
"CloudflareR2StorageService",
"LocalStorageService",
"StorageService",
]