README.md in jets-1.3.0 vs README.md in jets-1.3.1
- old
+ new
@@ -28,10 +28,10 @@
Jets supports writing AWS Lambda functions with Ruby. You define them in the `app/functions` folder. A function looks like this:
app/functions/simple.rb:
```ruby
-def handle(event:, context:)
+def handler_function(event:, context:)
puts "hello world"
{hello: "world"}
end
```