예제 #1
0
파일: helper.go 프로젝트: webx-top/webx
func Output(content []byte, ctx *X.Context) (err error) {
	ctx.Code = http.StatusOK
	switch ctx.Format {
	case `xml`:
		return OutputXML(content, ctx)
	case `json`:
		return OutputJSON(content, ctx)
	default:
		return OutputHTML(content, ctx)
	}
}