()
| 73 | } |
| 74 | |
| 75 | func ExampleWithUseNumber() { |
| 76 | lambda.StartWithOptions( |
| 77 | func(event interface{}) (interface{}, error) { |
| 78 | return event, nil |
| 79 | }, |
| 80 | lambda.WithUseNumber(true), |
| 81 | ) |
| 82 | } |
| 83 | |
| 84 | func ExampleWithDisallowUnknownFields() { |
| 85 | lambda.StartWithOptions( |
nothing calls this directly
no test coverage detected
searching dependent graphs…