package kite import "net/http" type NotFoundHandler Handler func defaultNotFoundHandler(ctx *Context) error { return ctx.WriteString(http.StatusNotFound, "404 not found") }