add route to download html template

This commit is contained in:
2025-10-25 22:14:18 -03:00
parent 29ecb87e45
commit f284b64c60
6 changed files with 42 additions and 10 deletions

View File

@@ -1,4 +1,3 @@
from aws_lambda_powertools import Logger
from aws_lambda_powertools.event_handler.api_gateway import Router
from aws_lambda_powertools.event_handler.exceptions import (
NotFoundError,
@@ -8,7 +7,6 @@ from layercake.dynamodb import DynamoDBPersistenceLayer, KeyPair
from boto3clients import dynamodb_client
from config import ORDER_TABLE
logger = Logger(__name__)
router = Router()
dyn = DynamoDBPersistenceLayer(ORDER_TABLE, dynamodb_client)