(controllerPath, actionName string)
| 182 | } |
| 183 | |
| 184 | func (l *loader) loadActionKey(controllerPath, actionName string) string { |
| 185 | return path.Join(controllerPath, text.Lower(text.Snake(actionName))) |
| 186 | } |
| 187 | |
| 188 | func (l *loader) isHandlerFunc(params []*parser.Param, results []*parser.Result) bool { |
| 189 | if len(params) != 2 || len(results) != 0 { |