(c *routing.Context)
| 35 | ) |
| 36 | |
| 37 | func (controller *Controller) HealthzHandler(c *routing.Context) error { |
| 38 | c.SetStatusCode(http.StatusOK) |
| 39 | c.WriteString("hello controller") |
| 40 | return nil |
| 41 | } |
| 42 | |
| 43 | func (controller *Controller) InvokeHandler(c *routing.Context) error { |
| 44 | externalRequestID := string(c.Request.Header.Peek(api.HeaderXRequestID)) |
nothing calls this directly
no test coverage detected