Island: Move AWSService to service/aws/

This commit is contained in:
Mike Salvatore 2022-05-09 12:59:28 -04:00
parent cfbe1e5656
commit f11ac5cc2b
3 changed files with 6 additions and 1 deletions

View File

@ -4,4 +4,8 @@ from .directory_file_storage_service import DirectoryFileStorageService
from .authentication.authentication_service import AuthenticationService
from .authentication.json_file_user_datastore import JsonFileUserDatastore
from .aws_service import AWSService
from .aws import AWSService
# TODO: This is a temporary import to keep some tests passing. Remove it before merging #1928 to
# develop.
from .aws import aws_service

View File

@ -0,0 +1 @@
from .aws_service import AWSService