8 lines
189 B
Go
8 lines
189 B
Go
package sushi
|
|
|
|
import "github.com/valyala/fasthttp"
|
|
|
|
type Ctx = *fasthttp.RequestCtx
|
|
type Handler func(ctx Ctx, params []string)
|
|
type Middleware func(ctx Ctx, params []string, next func())
|