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