Example #1
0
func (this *Resolver) GetController(request *httpcontext.Request) (controller *reflect.Value, method *reflect.Value, err error) {

	if _, ok := request.GetAttribute(httpcontext.CONTROLLER_PARAM); !ok {
		panic(fmt.Sprintf("%v is missing", httpcontext.CONTROLLER_PARAM))
	}
	return nil, nil, nil
}