mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
12 lines
197 B
Ruby
12 lines
197 B
Ruby
require 'json'
|
|
|
|
def hello(event:, context:)
|
|
{
|
|
statusCode: 200,
|
|
body: {
|
|
message: 'Go Serverless v1.0! Your function executed successfully!',
|
|
input: event
|
|
}.to_json
|
|
}
|
|
end
|