()
| 82 | } |
| 83 | |
| 84 | func ExampleWithDisallowUnknownFields() { |
| 85 | lambda.StartWithOptions( |
| 86 | func(event interface{}) (interface{}, error) { |
| 87 | return event, nil |
| 88 | }, |
| 89 | lambda.WithDisallowUnknownFields(true), |
| 90 | ) |
| 91 | } |
| 92 | |
| 93 | func ExampleWithEnableSIGTERM() { |
| 94 | lambda.StartWithOptions( |
nothing calls this directly
no test coverage detected
searching dependent graphs…