mirror of
https://github.com/RhenCloud/Cloud-Index.git
synced 2025-12-06 15:17:40 +08:00
7 lines
207 B
Python
7 lines
207 B
Python
from .base import BaseStorage
|
|
from .factory import StorageFactory
|
|
from .github import GitHubStorage
|
|
from .r2 import R2Storage
|
|
|
|
__all__ = ["BaseStorage", "R2Storage", "GitHubStorage", "StorageFactory"]
|