(ctx dotweb.Context)
| 41 | } |
| 42 | |
| 43 | func Index(ctx dotweb.Context) error { |
| 44 | ctx.Response().Header().Set("Content-Type", "text/html; charset=utf-8") |
| 45 | return ctx.WriteString("index => ", fmt.Sprint(ctx.RouterNode().Middlewares())) |
| 46 | } |
| 47 | |
| 48 | func GetAppSet(ctx dotweb.Context) error { |
| 49 | key := ctx.QueryString("key") |
nothing calls this directly
no test coverage detected