diff --git a/src/aiooss2/__init__.py b/src/aiooss2/__init__.py index afb643c..9540da8 100644 --- a/src/aiooss2/__init__.py +++ b/src/aiooss2/__init__.py @@ -6,4 +6,16 @@ from oss2 import AnonymousAuth, Auth, StsAuth from .api import AioBucket, AioService +from .http import AioSession from .iterators import AioBucketIterator, AioObjectIterator +from .resumable import resumable_download, resumable_upload + +__all__ = [ + "AioBucket", + "AioService", + "AioSession", + "AioBucketIterator", + "AioObjectIterator", + "resumable_upload", + "resumable_download", +]