8 lines
183 B
Go
8 lines
183 B
Go
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())
|