mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
7 lines
142 B
Ruby
7 lines
142 B
Ruby
require 'json'
|
|
|
|
def handler(event:, context:)
|
|
{"statusCode" => 200, "body" => {"message" => "Invoked", "env" => ENV.to_hash}.to_json }
|
|
end
|
|
|