Get initial scaffolding set up for lambda config

This commit is contained in:
Chris Diesch 2025-05-12 17:09:16 -06:00
parent bd7344774d
commit adddd38fc3
3 changed files with 10 additions and 0 deletions

0
__init__.py Normal file
View File

8
mre_lambda.py Normal file
View File

@ -0,0 +1,8 @@
import boto3
from aws_lambda_typing.events import S3Event
from aws_lambda_typing.context import Context
from .mre import compute_mre
def lambda_handler(event: S3Event, context: Context):
return None

View File

@ -1,2 +1,4 @@
boto3==1.38.14
botocore==1.38.14
aws-lambda-typing==2.20.0