(ctx dotweb.Context)
| 42 | } |
| 43 | |
| 44 | func Any(ctx dotweb.Context) error { |
| 45 | ctx.Response().Header().Set("Content-Type", "text/html; charset=utf-8") |
| 46 | return ctx.WriteString("any - " + ctx.Request().Method + " - " + ctx.RouterNode().Path()) |
| 47 | } |
| 48 | |
| 49 | func HandlerFunc(w http.ResponseWriter, r *http.Request) { |
| 50 | w.Write([]byte("go raw http func")) |
nothing calls this directly
no test coverage detected