32 lines
744 B
Python
32 lines
744 B
Python
"""
|
|
Working with media files - uploading, storing, receiving
|
|
"""
|
|
|
|
from server.modules.attachments.domains.attachments import Attachment
|
|
from server.modules.attachments.repositories.attachments import (
|
|
AttachmentRepository,
|
|
DBAttachmentRepository,
|
|
MockAttachmentRepository,
|
|
)
|
|
from server.modules.attachments.services.attachment import (
|
|
AtachmentService,
|
|
LocalStorageDriver,
|
|
MediaType,
|
|
MockStorageDriver,
|
|
S3StorageDriver,
|
|
StorageDriversType,
|
|
)
|
|
|
|
__all__ = [
|
|
"AtachmentService",
|
|
"Attachment",
|
|
"AttachmentRepository",
|
|
"MockAttachmentRepository",
|
|
"DBAttachmentRepository",
|
|
"LocalStorageDriver",
|
|
"MockStorageDriver",
|
|
"S3StorageDriver",
|
|
"MediaType",
|
|
"StorageDriversType",
|
|
]
|