Model/tests/infrastructure/__init__.py
2026-05-20 13:21:11 +00:00

10 lines
265 B
Python

from typing import Any
import boto3
REGION = "us-east-1"
def make_boto_client(service_name: str) -> Any:
factory: Any = boto3.client # pyright: ignore[reportUnknownMemberType, reportUnknownVariableType]
return factory(service_name, region_name=REGION)