Skip to content

Commit 731ae67

Browse files
committed
fix: Match filenames to class names
1 parent e405b7f commit 731ae67

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

src/python/src/mcp_lambda/handlers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
from .api_gateway_proxy_event_handler import APIGatewayProxyEventHandler
1616
from .api_gateway_proxy_event_v2_handler import APIGatewayProxyEventV2Handler
17-
from .bedrock_agent_core_gateway_handler import BedrockAgentCoreGatewayTargetHandler
17+
from .bedrock_agent_core_gateway_target_handler import BedrockAgentCoreGatewayTargetHandler
1818
from .lambda_function_url_event_handler import LambdaFunctionURLEventHandler
1919
from .request_handler import RequestHandler
2020
from .streamable_http_handler import (

src/typescript/src/handlers/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ export { RequestHandler } from "./requestHandler.js";
22
export { APIGatewayProxyEventHandler } from "./apiGatewayProxyEventHandler.js";
33
export { APIGatewayProxyEventV2Handler } from "./apiGatewayProxyEventV2Handler.js";
44
export { LambdaFunctionURLEventHandler } from "./lambdaFunctionUrlEventHandler.js";
5-
export { BedrockAgentCoreGatewayTargetHandler } from "./BedrockAgentCoreGatewayTargetHandler.js";
5+
export { BedrockAgentCoreGatewayTargetHandler } from "./bedrockAgentCoreGatewayTargetHandler.js";

0 commit comments

Comments
 (0)