import dotenv from 'dotenv'; // load environment variables from .env file dotenv.config(); // import the zombiesCleanupLambda function from the ./lambda module import { zombieCleanupLambda } from './lambda'; // FOR LOCAL RUN DO: zombieCleanupLambda() HERE // exports the zombiesCleanupLambda function as the handler function for the module module.exports.handler = zombieCleanupLambda;