Middleware

Middleware #

Middlewares are just another handlers, which runs before all defined handlers

app.Use(
    func(c hiro.Ctx) error {
        return c.Continue()
    },
)