예제 #1
0
파일: result.go 프로젝트: maiconio/flotilla
func NewResult(code int, rule Rule, params Params, tsr bool) *Result {
	return &Result{
		Recorder: newRecorder(),
		Xrroror:  xrr.NewXrroror(),
		Code:     code,
		Rule:     rule,
		Params:   params,
		TSR:      tsr,
	}
}
예제 #2
0
파일: ctx.go 프로젝트: maiconio/flotilla
func emptyCtx() *ctx {
	return &ctx{
		handlers: defaulthandlers(),
		Xrroror:  xrr.NewXrroror(),
	}
}