package sushi import "github.com/valyala/fasthttp" type Ctx = *fasthttp.RequestCtx type Handler func(ctx Ctx, params []string) type Middleware func(Handler) Handler