(code int)
| 13 | } |
| 14 | |
| 15 | func WithStatusCode(code int) Option { |
| 16 | return func(ec *ErrorContext) { |
| 17 | ec.statusCode = code |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | func WithPublicMessage(msg string) Option { |
| 22 | return func(ec *ErrorContext) { |
no outgoing calls
no test coverage detected