Hello, World!

This commit is contained in:
Maciej Pędzich
2022-09-11 19:54:16 +02:00
parent 0378b69a1a
commit a7cd7ae762
4 changed files with 5053 additions and 0 deletions

11
functions/index.js Normal file
View File

@@ -0,0 +1,11 @@
const {
createLambdaFunction,
createProbot
} = require('@probot/adapter-aws-lambda-serverless');
const appFn = require('../app');
module.exports.handler = createLambdaFunction(
appFn,
{ probot: createProbot() }
);