UNPKG

the-ldk

Version:

Welcome to the LDK! A collection of custom AWS CDK constructs to help you build serverless applications faster.

14 lines 347 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.handler = void 0; const handler = async () => { const response = { statusCode: 200, body: { message: 'Hello, World!', }, }; return response; }; exports.handler = handler; //# sourceMappingURL=exampleFunction.js.map