()
| 55 | } |
| 56 | |
| 57 | func ExampleWithSetEscapeHTML() { |
| 58 | lambda.StartWithOptions( |
| 59 | func() (string, error) { |
| 60 | return "<html><body>hello!</body></html>", nil |
| 61 | }, |
| 62 | lambda.WithSetEscapeHTML(true), |
| 63 | ) |
| 64 | } |
| 65 | |
| 66 | func ExampleWithSetIndent() { |
| 67 | lambda.StartWithOptions( |
nothing calls this directly
no test coverage detected
searching dependent graphs…