18 lines
446 B
TypeScript
18 lines
446 B
TypeScript
import { APIGatewayProxyEvent, APIGatewayProxyResult, Context } from 'aws-lambda';
|
|
import { safeHandler } from '../../../common/utils/handlers/safeHandler';
|
|
|
|
export const handler = safeHandler(
|
|
async (
|
|
event: APIGatewayProxyEvent,
|
|
context?: Context
|
|
): Promise<APIGatewayProxyResult> => {
|
|
return {
|
|
statusCode: 200,
|
|
body: JSON.stringify({
|
|
success: true,
|
|
message: 'Default route',
|
|
}),
|
|
};
|
|
}
|
|
);
|