Skip to content

Instantly share code, notes, and snippets.

@fulopdaniel
Created September 6, 2018 13:25
Show Gist options
  • Save fulopdaniel/c341ce1d9eaf1df0b1c849dddcf37354 to your computer and use it in GitHub Desktop.
Save fulopdaniel/c341ce1d9eaf1df0b1c849dddcf37354 to your computer and use it in GitHub Desktop.
export async function main(event, context, callback) {
parser(event).then(() => {
uploadFile(event.body.file)
.then(() => {
// Handle successful upload
})
.catch(() => {
// Handle upload errors
});
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment