(ctx dotweb.Context)
| 53 | } |
| 54 | |
| 55 | func ShowMiddlewares(ctx dotweb.Context) error { |
| 56 | err := ctx.WriteString("ShowMiddlewares => ", ctx.RouterNode().GroupMiddlewares()) |
| 57 | return err |
| 58 | } |
| 59 | |
| 60 | func InitRoute(server *dotweb.HttpServer) { |
| 61 | server.Router().GET("/", Index) |
nothing calls this directly
no test coverage detected