Skip to content

Instantly share code, notes, and snippets.

@richardgrantserverless
Created May 18, 2022 17:08
// lib/hello-world.js
class HelloWorld {
sayHello(event) {
return {
message: 'Go Serverless v1.0! Your function executed successfully!',
input: event,
};
}
}
module.exports = HelloWorld;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment