Initial Functional Implementation of S3 MicroService

This commit is contained in:
2023-08-09 00:32:36 -03:00
commit 0b320a3222
23 changed files with 1161 additions and 0 deletions

View File

View File

@@ -0,0 +1,7 @@
from resize_image_service.depends.depend_s3_service import (
dependency_s3_service,
)
def s3_image_worker(string_url: str) -> None:
dependency_s3_service().process_image(string_url)