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