mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
https://aws.amazon.com/about-aws/whats-new/2018/11/aws-lambda-supports-ruby/ Closes #5540
6 lines
151 B
Ruby
6 lines
151 B
Ruby
require 'json'
|
|
|
|
def hello(event:, context:)
|
|
{ statusCode: 200, body: JSON.generate('Go Serverless v1.0! Your function executed successfully!') }
|
|
end
|