File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 44import os
55import re
66import uuid
7- from botocore .config import Config
87from decimal import Decimal
98from typing import Optional
109import boto3
1110from aws_lambda_typing .events import APIGatewayProxyEventV1
12- from botocore .config import Config
1311from fhir .resources .R4B .immunization import Immunization
1412from boto3 import client as boto3_client
1513
1614from authorization import Authorization , UnknownPermission
17- from cache import Cache
1815from fhir_repository import ImmunizationRepository , create_table
1916from fhir_service import FhirService , UpdateOutcome , get_service_url
2017from models .errors import (
@@ -47,8 +44,6 @@ def make_controller(
4744):
4845 endpoint_url = "http://localhost:4566" if immunization_env == "local" else None
4946 imms_repo = ImmunizationRepository (create_table (endpoint_url = endpoint_url ))
50- boto_config = Config (region_name = "eu-west-2" )
51- cache = Cache (directory = "/tmp" )
5247
5348 authorizer = Authorization ()
5449 service = FhirService (imms_repo = imms_repo )
You can’t perform that action at this time.
0 commit comments