Initial commit

This commit is contained in:
2021-02-16 18:16:47 -05:00
commit b5aaa0b7fc
5 changed files with 27 additions and 0 deletions

1
export/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
handler.js

5
export/index.js Normal file
View File

@ -0,0 +1,5 @@
const handler = require("handler");
exports.handler = async function(event, context, callback) {
return handler.Handler.handler(event,context,callback);
}