(c *routing.Context)
| 25 | ) |
| 26 | |
| 27 | func HelloWorldHandler(c *routing.Context) error { |
| 28 | c.SetStatusCode(http.StatusOK) |
| 29 | c.WriteString("hello controller http trigger") |
| 30 | return nil |
| 31 | } |
| 32 | |
| 33 | func ProxyHandler(c *routing.Context) error { |
| 34 | reqCtx := BuildContext(c) |
nothing calls this directly
no test coverage detected