12 lines
224 B
TypeScript
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 };
|