Skip to content

Instantly share code, notes, and snippets.

@nirsky
Created March 18, 2021 08:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nirsky/2f689f1a4a00a7a13689517ee52eba60 to your computer and use it in GitHub Desktop.
Save nirsky/2f689f1a4a00a7a13689517ee52eba60 to your computer and use it in GitHub Desktop.
import { APIGatewayEvent, Context } from 'aws-lambda';
import { doSomething } from './utils';
export const handler = async (event: APIGatewayEvent, context: Context) => {
doSomething();
// Do some other stuff...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment