playlist-entry-validator/netlify/functions/index.ts

12 lines
224 B
TypeScript

import {
createLambdaFunction,
createProbot
} from '@probot/adapter-aws-lambda-serverless';
import { appFn } from '../..';
const handler = createLambdaFunction(appFn, {
probot: createProbot()
});
export { handler };